From f07ae6f56aed56a5d20f1b100903117f10701237 Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Fri, 11 Apr 2025 10:49:47 +0200 Subject: [PATCH] ci: Add missing Helm repos for the lint job to pass --- .github/workflows/lint.yaml | 7 +++++++ .github/workflows/test.yaml | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 6745d350..fc665629 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -46,6 +46,13 @@ jobs: echo "changed=true" >> "$GITHUB_OUTPUT" fi + - name: Add Helm Repositories + if: steps.list-changed.outputs.changed == 'true' + run: | + helm repo add bitnami https://charts.bitnami.com/bitnami + helm repo add backstage https://backstage.github.io/charts + helm repo update + - name: Run chart-testing (lint) if: steps.list-changed.outputs.changed == 'true' run: | diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 6ed37964..6b26e0d7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -59,11 +59,11 @@ jobs: echo "changed=true" >> "$GITHUB_OUTPUT" fi - - name: "Add NGINX Ingress and Bitnami Repository" + - name: Add Helm Repositories if: steps.list-changed.outputs.changed == 'true' run: | - helm repo add ingress-nginx "https://kubernetes.github.io/ingress-nginx" - helm repo add bitnami "https://charts.bitnami.com/bitnami" + helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx + helm repo add bitnami https://charts.bitnami.com/bitnami helm repo add backstage https://backstage.github.io/charts helm repo update