From 83ad412b322d8ff8909a1bc2931c688c56f4829e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Oct 2025 23:55:01 +0000 Subject: [PATCH] Mark Helm v4 CI test as experimental with continue-on-error Co-authored-by: yxxhero <11087727+yxxhero@users.noreply.github.com> --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 982ae526..4b0c8753 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -86,12 +86,13 @@ jobs: plugin-secrets-version: 4.6.5 plugin-diff-version: 3.12.5 extra-helmfile-flags: '--enable-live-output' - # Test with Helm v4 beta + # Test with Helm v4 beta (allowed to fail as it's in beta) - helm-version: v4.0.0-beta.1 kustomize-version: v5.4.3 plugin-secrets-version: 4.6.5 plugin-diff-version: 3.12.5 extra-helmfile-flags: '' + experimental: true steps: - uses: actions/checkout@v5 - uses: actions/setup-go@v6 @@ -119,6 +120,7 @@ jobs: kubernetes-version: v1.33.1 - name: Execute integration tests run: make integration + continue-on-error: ${{ matrix.experimental == true }} env: HELM_SECRETS_VERSION: ${{ matrix.plugin-secrets-version }} HELM_DIFF_VERSION: ${{ matrix.plugin-diff-version }}