From 23241886958f32320431f19560ecdc89c591284e Mon Sep 17 00:00:00 2001 From: yxxhero Date: Fri, 11 Nov 2022 08:10:14 +0800 Subject: [PATCH] bump: helm to 3.10.2 Signed-off-by: yxxhero --- .github/workflows/ci.yaml | 6 +++--- Dockerfile | 4 ++-- Dockerfile.debian-stable-slim | 4 ++-- Dockerfile.ubuntu | 4 ++-- pkg/app/init.go | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a043bffc..1f49c4ef 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -71,19 +71,19 @@ jobs: plugin-secrets-version: 4.0.0 plugin-diff-version: 3.6.0 extra-helmfile-flags: - - helm-version: v3.10.1 + - helm-version: v3.10.2 kustomize-version: v4.4.1 plugin-secrets-version: 3.15.0 plugin-diff-version: 3.5.0 extra-helmfile-flags: - - helm-version: v3.10.1 + - helm-version: v3.10.2 kustomize-version: v4.5.7 plugin-secrets-version: 4.0.0 plugin-diff-version: 3.6.0 extra-helmfile-flags: # In case you need to test some optional helmfile features, # enable it via extra-helmfile-flags below. - - helm-version: v3.10.1 + - helm-version: v3.10.2 kustomize-version: v4.5.7 plugin-secrets-version: 4.0.0 plugin-diff-version: 3.6.0 diff --git a/Dockerfile b/Dockerfile index 95a0154b..a8217633 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,8 @@ LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile RUN apk add --no-cache ca-certificates git bash curl jq openssh-client -ARG HELM_VERSION="v3.10.1" -ARG HELM_SHA256="c12d2cd638f2d066fec123d0bd7f010f32c643afdf288d39a4610b1f9cb32af3" +ARG HELM_VERSION="v3.10.2" +ARG HELM_SHA256="2315941a13291c277dac9f65e75ead56386440d3907e0540bf157ae70f188347" ARG HELM_LOCATION="https://get.helm.sh" ARG HELM_FILENAME="helm-${HELM_VERSION}-linux-amd64.tar.gz" diff --git a/Dockerfile.debian-stable-slim b/Dockerfile.debian-stable-slim index 5767ad99..a9e33072 100644 --- a/Dockerfile.debian-stable-slim +++ b/Dockerfile.debian-stable-slim @@ -21,8 +21,8 @@ RUN apt update -qq && \ git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/* -ARG HELM_VERSION="v3.10.1" -ARG HELM_SHA256="c12d2cd638f2d066fec123d0bd7f010f32c643afdf288d39a4610b1f9cb32af3" +ARG HELM_VERSION="v3.10.2" +ARG HELM_SHA256="2315941a13291c277dac9f65e75ead56386440d3907e0540bf157ae70f188347" ARG HELM_LOCATION="https://get.helm.sh" ARG HELM_FILENAME="helm-${HELM_VERSION}-linux-amd64.tar.gz" diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 6d4ec996..087084c5 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -21,8 +21,8 @@ RUN apt-get update && \ git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/* -ARG HELM_VERSION="v3.10.1" -ARG HELM_SHA256="c12d2cd638f2d066fec123d0bd7f010f32c643afdf288d39a4610b1f9cb32af3" +ARG HELM_VERSION="v3.10.2" +ARG HELM_SHA256="2315941a13291c277dac9f65e75ead56386440d3907e0540bf157ae70f188347" ARG HELM_LOCATION="https://get.helm.sh" ARG HELM_FILENAME="helm-${HELM_VERSION}-linux-amd64.tar.gz" diff --git a/pkg/app/init.go b/pkg/app/init.go index e5076a73..fc9720f6 100644 --- a/pkg/app/init.go +++ b/pkg/app/init.go @@ -18,7 +18,7 @@ import ( const ( HelmRequiredVersion = "v2.10.0" - HelmRecommendedVersion = "v3.10.1" + HelmRecommendedVersion = "v3.10.2" HelmDiffRecommendedVersion = "v3.4.0" HelmSecretsRecommendedVersion = "v4.1.1" HelmGitRecommendedVersion = "v0.12.0"