From d89feab0232d84a7c3b3bcc7710910f1f35d053b Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Wed, 13 Nov 2024 11:47:49 -0500 Subject: [PATCH] Bump golangci-lint version (#163) Ref: https://github.com/golangci/golangci-lint/releases/tag/v1.62.0 --- make/go/dep_golangci_lint.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/go/dep_golangci_lint.mk b/make/go/dep_golangci_lint.mk index f29c074..77e9bee 100644 --- a/make/go/dep_golangci_lint.mk +++ b/make/go/dep_golangci_lint.mk @@ -12,9 +12,9 @@ $(call _assert_var,CACHE_BIN) GOLANGCI_LINT_GO_VERSION := $(shell go mod edit -json | jq -r .Go | cut -d'.' -f1-2) # Settable -# https://github.com/golangci/golangci-lint/releases 20240909 checked 20240916 +# https://github.com/golangci/golangci-lint/releases 20241110 checked 20241113 # Contrast golangci-lint configuration with the one in https://github.com/connectrpc/connect-go/blob/main/.golangci.yml when upgrading -GOLANGCI_LINT_VERSION ?= v1.61.0 +GOLANGCI_LINT_VERSION ?= v1.62.0 GOLANGCI_LINT := $(CACHE_VERSIONS)/golangci-lint/$(GOLANGCI_LINT_VERSION)-go$(GOLANGCI_LINT_GO_VERSION) $(GOLANGCI_LINT):