From 3aca0fcea731ffab7502a4ef12da42a8f1b31c4e Mon Sep 17 00:00:00 2001 From: root Date: Sun, 22 Feb 2026 14:31:44 +0100 Subject: [PATCH] fix: use pre-installed yamllint from runner-tools image 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 --- .gitea/workflows/pr-checks.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/pr-checks.yaml b/.gitea/workflows/pr-checks.yaml index 3a35f38..80d2c2c 100644 --- a/.gitea/workflows/pr-checks.yaml +++ b/.gitea/workflows/pr-checks.yaml @@ -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"