From fbf1f4a62d1c7870e7630e229de585e8aba3828d Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 20 Jul 2026 19:08:06 +0200 Subject: [PATCH] ci: disable signature verification for helm-unittest plugin install The `helm plugin install` command fails when GnuPG is not available in the container. Adding `--verify=false` skips signature verification to allow the plugin to install in the Alpine-based CI environment. --- .gitea/workflows/test-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test-pr.yml b/.gitea/workflows/test-pr.yml index 11a4bb8..987a54f 100644 --- a/.gitea/workflows/test-pr.yml +++ b/.gitea/workflows/test-pr.yml @@ -30,7 +30,7 @@ jobs: run: helm template --debug gitea-helm . - name: prepare unit test environment run: | - helm plugin install --version ${{ env.HELM_UNITTEST_VERSION }} https://github.com/helm-unittest/helm-unittest + helm plugin install --verify=false --version ${{ env.HELM_UNITTEST_VERSION }} https://github.com/helm-unittest/helm-unittest git submodule update --init --recursive - name: unit tests env: