From 5a9596f5dae9ac8ab898e4dde0a8d27aa4eb2614 Mon Sep 17 00:00:00 2001 From: Travis Raines Date: Thu, 7 Jan 2021 13:38:08 -0500 Subject: [PATCH] [repo] replace old Helm stable with Bitnami Per https://helm.sh/blog/new-location-stable-incubator-charts/ the previous location used here is now unavailable, breaking releases. We furthermore no longer actually use the dependency in the old repo in the actual chart, so changing this to the Bitnami repo rather than the new Helm repo. --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6d16522de..3297b7dc6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -58,7 +58,7 @@ jobs: - name: Add dependency chart repos run: | - helm repo add stable https://kubernetes-charts.storage.googleapis.com/ + helm repo add bitnami https://charts.bitnami.com/bitnami - name: Run chart-releaser uses: helm/chart-releaser-action@v1.0.0-alpha.2