From 86b2b954a940c1be94be144e15aca8c6b45cd5b2 Mon Sep 17 00:00:00 2001 From: steigr Date: Sun, 28 Sep 2025 19:00:08 +0200 Subject: [PATCH] Update staticcheck to 2025.1.1 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 316fa895..7f4c1fc9 100644 --- a/Makefile +++ b/Makefile @@ -162,7 +162,7 @@ staticcheck: ## Verifies `staticcheck` passes @echo "+ $@" ifndef HAS_STATICCHECK $(eval TMP_DIR := $(shell mktemp -d)) - wget -O $(TMP_DIR)/staticcheck_$(PLATFORM)_amd64.tar.gz https://github.com/dominikh/go-tools/releases/download/2023.1.7/staticcheck_$(PLATFORM)_amd64.tar.gz + wget -O $(TMP_DIR)/staticcheck_$(PLATFORM)_amd64.tar.gz https://github.com/dominikh/go-tools/releases/download/2025.1.1/staticcheck_$(PLATFORM)_amd64.tar.gz tar zxvf $(TMP_DIR)/staticcheck_$(PLATFORM)_amd64.tar.gz -C $(TMP_DIR) mkdir -p $(PROJECT_DIR)/bin mv $(TMP_DIR)/staticcheck/staticcheck $(PROJECT_DIR)/bin