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"; \