From 2ab73aca76fdfd5ef812d81d65b623025cf0a93a Mon Sep 17 00:00:00 2001 From: yxxhero Date: Thu, 17 Jul 2025 06:39:03 +0800 Subject: [PATCH] fix: update Helm version to v3.17.4 in CI and init.go Signed-off-by: yxxhero --- .github/workflows/ci.yaml | 4 ++-- pkg/app/init.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f15bc4ec..658ea382 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -54,12 +54,12 @@ jobs: # Helm maintains the latest minor version only and therefore each Helmfile version supports 2 Helm minor versions. # That's why we cover only 2 Helm minor versions in this matrix. # See https://github.com/helmfile/helmfile/pull/286#issuecomment-1250161182 for more context. - - helm-version: v3.17.3 + - helm-version: v3.17.4 kustomize-version: v5.2.1 plugin-secrets-version: 4.6.5 plugin-diff-version: 3.11.0 extra-helmfile-flags: '' - - helm-version: v3.17.3 + - helm-version: v3.17.4 kustomize-version: v5.4.3 # We assume that the helm-secrets plugin is supposed to # work with the two most recent helm minor versions. diff --git a/pkg/app/init.go b/pkg/app/init.go index d8166632..c2c07927 100644 --- a/pkg/app/init.go +++ b/pkg/app/init.go @@ -17,7 +17,7 @@ import ( ) const ( - HelmRequiredVersion = "v3.17.3" + HelmRequiredVersion = "v3.17.4" HelmDiffRecommendedVersion = "v3.12.3" HelmRecommendedVersion = "v3.18.4" HelmSecretsRecommendedVersion = "v4.6.5"