From b4f65ccd5f393396ed3b9f59f28c1dc918df4d78 Mon Sep 17 00:00:00 2001 From: Gabriel Coutu Date: Tue, 2 Apr 2024 13:31:41 -0400 Subject: [PATCH] Update workflow to update dependencies --- .github/workflows/helm.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/helm.yaml b/.github/workflows/helm.yaml index 9e1f740..8dff3d9 100644 --- a/.github/workflows/helm.yaml +++ b/.github/workflows/helm.yaml @@ -32,6 +32,12 @@ jobs: helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done done + - name: update chart dependencies + run: | + for dir in $(ls -d charts/*/); do + helm dependency update $dir + done + - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0 with: