diff --git a/.gitea/workflows/lint-test.yaml b/.gitea/workflows/lint-test.yaml index ed8bd42..aadf27a 100644 --- a/.gitea/workflows/lint-test.yaml +++ b/.gitea/workflows/lint-test.yaml @@ -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