From d4013fd80d8a2a9aee9e47d581c65886467fe9bb Mon Sep 17 00:00:00 2001 From: Amir Alavi Date: Thu, 19 Feb 2026 08:00:09 -0500 Subject: [PATCH] fix(ci): pin helm-unittest plugin version and bump chart-testing-action The helm-unittest plugin install was failing with: error unmarshaling JSON: while decoding JSON: json: unknown field "platformHooks" Pin helm-unittest to v1.0.3 and bump chart-testing-action to v2.8.0. --- .github/workflows/helm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helm.yaml b/.github/workflows/helm.yaml index 030b2ab52..81b550824 100644 --- a/.github/workflows/helm.yaml +++ b/.github/workflows/helm.yaml @@ -38,13 +38,13 @@ jobs: go-version-file: 'go.mod' - name: Set up chart-testing - uses: helm/chart-testing-action@v2.6.1 + uses: helm/chart-testing-action@v2.8.0 with: version: v3.11.0 - name: Install Helm Unit Test Plugin run: | - helm plugin install https://github.com/helm-unittest/helm-unittest + helm plugin install --version 1.0.3 https://github.com/helm-unittest/helm-unittest - name: Run Helm Unit Tests run: |