From 8fe5d2dd5f3d7b0b036dc4ce0bb41d299a1fdf11 Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Thu, 27 Feb 2025 01:00:51 -0700 Subject: [PATCH] Fix the version of staticcheck used to v0.5.1 v0.6.0, recently released, depends on a newer golang than we might test with. Signed-off-by: Jonathon Anderson --- Tools.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools.mk b/Tools.mk index 9bc49836..924bb2f2 100644 --- a/Tools.mk +++ b/Tools.mk @@ -59,7 +59,7 @@ $(GOLANG_LICENSES): GOBIN="$(PWD)/$(TOOLS_BIN)" go install github.com/google/go-licenses@v1.6.0 $(GOLANG_STATICCHECK): - GOBIN="$(PWD)/$(TOOLS_BIN)" go install honnef.co/go/tools/cmd/staticcheck@latest + GOBIN="$(PWD)/$(TOOLS_BIN)" go install honnef.co/go/tools/cmd/staticcheck@v0.5.1 .PHONY: cleantools cleantools: