Compare commits

..

2 Commits

Author SHA1 Message Date
6031743d1c Update helm/chart-testing-action action to v2.8.0 2025-12-15 20:13:09 +00:00
a630a2cda2 ignore oci in lint test
All checks were successful
renovate / renovate (push) Successful in 29s
2025-12-15 14:12:41 -06:00

View File

@@ -170,7 +170,13 @@ jobs:
helm dependency list --max-col-width 120 charts/$dir 2> /dev/null \
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do echo "$cmd" | sh; done || true
| while read cmd; do
if [[ "$cmd" == "helm repo add oci:*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;
fi
done || true
done
if helm repo list | tail +2 | read -r; then