From 033d56a734fe96568e8805c132809f923fee05cb Mon Sep 17 00:00:00 2001 From: Timothy Messier Date: Mon, 4 Dec 2023 22:23:50 +0000 Subject: [PATCH] chore(lint): Update version of golangci-lint Updating this helps resolve some false positives that were happening in CI when detecting linter issues on PRs. (cherry picked from commit cd21f10a3bc3659217662459a8c0657dd165e0bd) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 13f87fa5e1..c8e3dd25fb 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ golangci-lint: if [ "$(GOLINT_INSTALLED)" = "" ]; then \ curl -sSfL \ - https://raw.githubusercontent.com/golangci/golangci-lint/9a8a056e9fe49c0e9ed2287aedce1022c79a115b/install.sh | sh -s -- -b $(GO_PATH)/bin v1.52.2; \ + https://raw.githubusercontent.com/golangci/golangci-lint/9a8a056e9fe49c0e9ed2287aedce1022c79a115b/install.sh | sh -s -- -b $(GO_PATH)/bin v1.55.2; \ fi; .PHONY: cleangen