From 0a74fb914d5cd38c815a3b394038020814d48e8e Mon Sep 17 00:00:00 2001 From: "Philip K. Warren" Date: Thu, 2 Jan 2025 09:47:55 -0600 Subject: [PATCH] Upgrade golangci-lint to v1.63.2 --- 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 8babad9..a33a992 100644 --- a/make/go/dep_golangci_lint.mk +++ b/make/go/dep_golangci_lint.mk @@ -11,9 +11,9 @@ $(call _assert_var,CACHE_BIN) GOLANGCI_LINT_GO_VERSION := $(shell go list -m -f '{{.GoVersion}}' | cut -d'.' -f1-2) # Settable -# https://github.com/golangci/golangci-lint/releases 20241110 checked 20241113 +# https://github.com/golangci/golangci-lint/releases 20250102 checked 20250102 # Contrast golangci-lint configuration with the one in https://github.com/connectrpc/connect-go/blob/main/.golangci.yml when upgrading -GOLANGCI_LINT_VERSION ?= v1.62.0 +GOLANGCI_LINT_VERSION ?= v1.63.2 GOLANGCI_LINT := $(CACHE_VERSIONS)/golangci-lint/$(GOLANGCI_LINT_VERSION)-go$(GOLANGCI_LINT_GO_VERSION) $(GOLANGCI_LINT):