From 599497c3d2393c021dfcc29c779743a3195961b3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 01:51:00 +0000 Subject: [PATCH] Update golang Docker tag to v1.26 --- .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..d4537e8c 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.26 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..cda222f8 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.26 as go_builder RUN go install github.com/yannh/kubeconform/cmd/kubeconform@v0.4.13