From 56cec502264e935a4c5486f4a663fb705a8e5735 Mon Sep 17 00:00:00 2001 From: Matthew Mellor Date: Wed, 18 Mar 2026 23:33:06 -0500 Subject: [PATCH] chore(container): bump Go builder from 1.24 to 1.25 govulncheck built with Go 1.24 cannot analyze Go 1.25 packages, causing false failures on projects using the latest Go version. Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 010f9e0..0d5746b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # === Builder stage: Go-based tools === # Compiles Go-based tools (shfmt, tflint, terraform-docs, trivy, gitleaks) -FROM golang:1.24-bookworm AS go-builder +FROM golang:1.25-bookworm AS go-builder ARG TARGETARCH ENV GOTOOLCHAIN=auto