From aaf11afef7c976f9ffbb61b1cf28a3587e064a68 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 20 Mar 2024 15:28:10 +0100 Subject: [PATCH] Fix golangci-lint version pinning (#3521) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b01cfdd3..5c62a9258 100644 --- a/Makefile +++ b/Makefile @@ -127,7 +127,7 @@ check-xgo: ## Check if xgo is installed install-tools: ## Install development tools @hash golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - go install github.com/golangci/golangci-lint/cmd/golangci-lint@1.56.2 ; \ + go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.2 ; \ fi ; \ hash gofumpt > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ go install mvdan.cc/gofumpt@latest; \