From 786663e11e978ca4fcdc28e463bb2f5c36e0af56 Mon Sep 17 00:00:00 2001 From: Yong Date: Mon, 15 Dec 2025 22:02:57 -0600 Subject: [PATCH 1/2] Fix helm unittest for GH action --- .github/workflows/helm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index e5a521d3c5..cad33c1edd 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -76,7 +76,7 @@ jobs: - name: Run Helm unit tests run: | - helm plugin install https://github.com/helm-unittest/helm-unittest.git || true + helm plugin install https://github.com/helm-unittest/helm-unittest.git --version 1.0.2 || true helm unittest helm/polaris - name: Run chart-testing (lint) From 6d63b4d86af23726fb78db165455fe37af74bae1 Mon Sep 17 00:00:00 2001 From: Yong Date: Mon, 15 Dec 2025 22:04:37 -0600 Subject: [PATCH 2/2] Fix helm unittest for GH action --- .github/workflows/helm.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index cad33c1edd..7e6fd78c8e 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -76,6 +76,7 @@ jobs: - name: Run Helm unit tests run: | + # Pin version to 1.0.2 due to https://github.com/helm-unittest/helm-unittest/issues/790 helm plugin install https://github.com/helm-unittest/helm-unittest.git --version 1.0.2 || true helm unittest helm/polaris