From 2e1d1ff7d4754bce2077a76d7d6a15a735f39e93 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 31 Aug 2025 09:36:36 +0000 Subject: [PATCH] Update golang Docker tag to v1.25 --- .devcontainer/Dockerfile | 2 +- dockerfiles/argocd_tools/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f874fd40..78af223a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,5 @@ # Build - jsonnet (https://github.com/google/go-jsonnet) -FROM golang:1.24 as jsonnet-builder +FROM golang:1.25 as jsonnet-builder RUN go install github.com/google/go-jsonnet/cmd/jsonnet@latest RUN go install github.com/google/go-jsonnet/cmd/jsonnet-lint@latest RUN go install github.com/google/go-jsonnet/cmd/jsonnetfmt@latest diff --git a/dockerfiles/argocd_tools/Dockerfile b/dockerfiles/argocd_tools/Dockerfile index 074b1152..9dc98031 100644 --- a/dockerfiles/argocd_tools/Dockerfile +++ b/dockerfiles/argocd_tools/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24 as go_builder +FROM golang:1.25 as go_builder RUN go install github.com/yannh/kubeconform/cmd/kubeconform@v0.4.13