From 89662f773ec1b5da86fd8a29e48487a0b0868ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Bouy=C3=A9?= Date: Tue, 21 Jan 2025 19:23:31 +0100 Subject: [PATCH] checks: update staticchecks version to 2024.1.1 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 90ea879b..f2d2ec80 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ checks: check_tools false;\ fi - @STATICCHECKOUT=$$(staticcheck -go 1.22 -checks all ./...); \ + @STATICCHECKOUT=$$(staticcheck -go 1.23 -checks all ./...); \ if [ -z "$$STATICCHECKOUT" ]; then\ echo "staticcheck: OK";\ else \ @@ -78,7 +78,7 @@ EXECUTABLES = goimports staticcheck govulncheck gosec .PHONY: get_tools get_tools: go install golang.org/x/tools/cmd/goimports@latest - go install honnef.co/go/tools/cmd/staticcheck@2023.1.7 + go install honnef.co/go/tools/cmd/staticcheck@2024.1.1 go install golang.org/x/vuln/cmd/govulncheck@latest go install github.com/securego/gosec/v2/cmd/gosec@latest