From dc73cbf88f0b5123484c1712663f6c319452b4a2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 19:33:50 +0000 Subject: [PATCH 1/2] Update dependency golangci/golangci-lint to v2.12.2 --- .github/workflows/ci.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90b3dff..1adb34a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: env: # Common versions GO_VERSION: '1.25.11' - GOLANGCI_VERSION: 'v2.11.4' + GOLANGCI_VERSION: 'v2.12.2' jobs: check-diff: diff --git a/Makefile b/Makefile index 503ba00..3a7470a 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ GO_TEST_PARALLEL := $(shell echo $$(( $(NPROCS) / 2 ))) GO_LDFLAGS += -X $(GO_PROJECT)/pkg/version.Version=$(VERSION) GO_SUBDIRS += errors proto resource response request GO111MODULE = on -GOLANGCILINT_VERSION = 2.11.4 +GOLANGCILINT_VERSION = 2.12.2 GO_LINT_ARGS ?= "--fix" -include build/makelib/golang.mk From d79c69182c59f6808458632904fa9180221c76f9 Mon Sep 17 00:00:00 2001 From: Bob Haddleton Date: Mon, 13 Jul 2026 14:36:18 -0500 Subject: [PATCH 2/2] Ignore tests for goconst linter Signed-off-by: Bob Haddleton --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index b0e69b1..fa95f79 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -115,6 +115,7 @@ linters: check-type-assertions: false check-blank: false goconst: + ignore-tests: true min-len: 3 min-occurrences: 5 gocritic: