From 45225916d241e10e1f764620658c3fc05b2bc191 Mon Sep 17 00:00:00 2001 From: TrueCharts Bot Date: Thu, 6 Mar 2025 01:40:27 +0100 Subject: [PATCH] chore(container): update golang docker tag to v1.24.1 (#32895) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang | stage | patch | `1.24.0-alpine` -> `1.24.1-alpine` | | golang | final | patch | `1.24.0` -> `1.24.1` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). --- containers/apps/charts-ci/Dockerfile | 2 +- containers/apps/kube-sa-proxy/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/apps/charts-ci/Dockerfile b/containers/apps/charts-ci/Dockerfile index c2a7d614100..4e6e60e83b0 100644 --- a/containers/apps/charts-ci/Dockerfile +++ b/containers/apps/charts-ci/Dockerfile @@ -190,7 +190,7 @@ RUN \ # Install golang -COPY --from=golang:1.24.0@sha256:3f7444391c51a11a039bf0359ee81cc64e663c17d787ad0e637a4de1a3f62a71 /usr/local/go/ /usr/local/go/ +COPY --from=golang:1.24.1@sha256:c5adecdb7b3f8c5ca3c88648a861882849cc8b02fed68ece31e25de88ad13418 /usr/local/go/ /usr/local/go/ ENV GOPATH /go ENV PATH $GOPATH/bin:$PATH diff --git a/containers/apps/kube-sa-proxy/Dockerfile b/containers/apps/kube-sa-proxy/Dockerfile index f88802a2714..6f5e7bca507 100644 --- a/containers/apps/kube-sa-proxy/Dockerfile +++ b/containers/apps/kube-sa-proxy/Dockerfile @@ -1,5 +1,5 @@ # Stage 1 - Build the Go application -FROM golang:1.24.0-alpine@sha256:2d40d4fc278dad38be0777d5e2a88a2c6dee51b0b29c97a764fc6c6a11ca893c AS builder +FROM golang:1.24.1-alpine@sha256:43c094ad24b6ac0546c62193baeb3e6e49ce14d3250845d166c77c25f64b0386 AS builder # Install necessary build dependencies RUN apk --no-cache add --update gcc musl-dev