From 84303c969a32ed6b5b2397630849da42310b7506 Mon Sep 17 00:00:00 2001 From: clawbot Date: Thu, 26 Feb 2026 11:43:52 -0800 Subject: [PATCH] fix: pin golangci-lint to v2.1.6 in Dockerfile Replace @latest with @v2.1.6 to comply with hash-pinning policy defined in REPO_POLICIES.md. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b67f1c4..b9b149a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN go mod download COPY . . # Run all checks — build fails if branch is not green -RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest +RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@v2.1.6 RUN make check ARG VERSION=dev