From daeecaa0e4598f994d7fb15d69ed95becef011a5 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Thu, 6 Mar 2025 17:00:26 -0500 Subject: [PATCH] Makefile: bump golangci-lint to 1.60.1 Since we bumped the Go version for the project to 1.23.2, we need to also bump the golangci-lint project to 1.60.1 in order to support it. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7fdd949be..7267b44dc 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ install-gen-deps: ## Install dependencies for code generation install-lint-deps: ## Install linter dependencies @echo "==> Updating linter dependencies..." - @curl -sSfL -q https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.54.0 + @curl -sSfL -q https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.60.1 dev: ## Build and install a development build @grep 'const VersionPrerelease = ""' version/version.go > /dev/null ; if [ $$? -eq 0 ]; then \