From 46fb2a98551a19f5c10189db159efe5c6f2d885f Mon Sep 17 00:00:00 2001 From: Ansh Garhewal Date: Fri, 2 Aug 2024 17:28:37 +0530 Subject: [PATCH] chore: updated go staticcheck version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e18f26f9..59b42515 100644 --- a/Makefile +++ b/Makefile @@ -156,7 +156,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/2020.1.3/staticcheck_$(PLATFORM)_amd64.tar.gz + 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 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