Compare commits

..

4 Commits

Author SHA1 Message Date
4f549fdde1 Update helm/chart-testing-action action to v2.8.0 2026-01-22 00:02:53 +00:00
dc6604bb4a Merge pull request 'Update cloudflare/cloudflared Docker tag to v2026' (#161) from renovate/cloudflare-cloudflared-2026.x into main
Reviewed-on: #161
2026-01-21 21:11:52 +00:00
130b9d42c3 Update cloudflare/cloudflared Docker tag to v2026
All checks were successful
lint-and-test / lint-helm (pull_request) Successful in 22s
lint-and-test / chart-testing (pull_request) Successful in 54s
2026-01-20 21:02:34 +00:00
59b36c889c fix path
All checks were successful
renovate / renovate (push) Successful in 3m0s
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