Compare commits

...

2 Commits

Author SHA1 Message Date
c8d117ba01 Update helm/chart-testing-action action to v2.8.0 2026-01-20 21:02:23 +00:00
59b36c889c fix path
All checks were successful
renovate / renovate (push) Successful in 1m0s
2026-01-20 15:00:51 -06:00

View File

@@ -42,7 +42,7 @@ jobs:
python-version: '3.14'
- name: Set up Chart Testing
uses: helm/chart-testing-action@v2.7.0
uses: helm/chart-testing-action@v2.8.0
with:
yamale_version: "6.0.0"
@@ -68,7 +68,7 @@ jobs:
run: |
echo ">> Adding repositories for chart dependencies ..."
for dir in ${CHANGED_CHARTS}; do
helm dependency list --max-col-width 120 charts/$dir 2> /dev/null \
helm dependency list --max-col-width 120 $dir 2> /dev/null \
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do