From 63774eb6ab5d713614645dd05bbce26297f3e4b3 Mon Sep 17 00:00:00 2001 From: "jd1048576-renovate[bot]" <192009716+jd1048576-renovate[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 04:30:11 +0000 Subject: [PATCH] chore(deps): update dependency https://github.com/helm/helm to v4.2.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e06f8c2..01762a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ RUN --mount=type=cache,target=/var/lib/apt,sharing=locked --mount=type=tmpfs,tar kubectl version --client; # renovate: datasource=git-tags depName=https://github.com/helm/helm extractVersion=^v(?.+)$ -ARG HELM_VERSION="4.1.4" +ARG HELM_VERSION="4.2.0" RUN set -eux; \ case "${TARGETPLATFORM}" in linux/amd64) ARCH="amd64";; linux/arm64) ARCH="arm64";; *) printf "Unsupported target platform [%s]\n"; exit 1;; esac; \ curl -fsSLo bundle.tar.gz "https://get.helm.sh/helm-v${HELM_VERSION}-linux-${ARCH}.tar.gz"; \