fix: use pre-installed yamllint from runner-tools image
All checks were successful
AI Review / AI Code Review (pull_request) Successful in 2s
PR Checks / Validate & Security Scan (pull_request) Successful in 12s

yamllint is now pre-installed in the runner-tools Docker image.
Removes fragile pip install step that was failing silently.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
root 2026-02-22 14:31:44 +01:00
parent ab4f0ed8c8
commit 3aca0fcea7

View File

@ -18,7 +18,6 @@ jobs:
- name: YAML Lint
run: |
echo "=== YAML Lint ==="
pip install -q --break-system-packages yamllint
yamllint -d "{extends: relaxed, rules: {line-length: {max: 200}}}" \
environments/ argocd-apps/ apps/
echo "YAML lint passed"