From bc04b05ecdd86d6f406291c6a27477656c6f42bb Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Sat, 2 May 2026 13:23:22 +0100 Subject: [PATCH] Bump golangci-lint No new linter violations, but this should help minimise future breakages as we e.g. bump go versions. Signed-off-by: Stephen Finucane --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c9976facca..3410bb46a6 100644 --- a/Makefile +++ b/Makefile @@ -81,7 +81,7 @@ $(BUILD_CMDS): $(SOURCES) test: unit functional check: work - go run github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.3.1 run --timeout=20m ./... + go run github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.12.0 run --timeout=20m ./... unit: work go test -tags=unit $(shell go list ./... | sed -e '/sanity/ { N; d; }' | sed -e '/tests/ {N; d;}') $(TESTARGS)