Fix zizmor PATH issue in CI by using pipx run
Some checks failed
CI / backend-lint (pull_request) Successful in 9s
CI / actions-lint (pull_request) Failing after 15s
CI / frontend-lint (pull_request) Successful in 20s

pipx run executes directly without needing the binary on PATH.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-17 19:31:39 +01:00
parent e9100fa826
commit 2675491216

View File

@@ -49,10 +49,8 @@ jobs:
sudo mv actionlint /usr/local/bin/ sudo mv actionlint /usr/local/bin/
- name: Lint GitHub Actions - name: Lint GitHub Actions
run: actionlint run: actionlint
- name: Install zizmor
run: pipx install zizmor
- name: Audit GitHub Actions security - name: Audit GitHub Actions security
run: zizmor .github/workflows/ run: pipx run zizmor .github/workflows/
frontend-lint: frontend-lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest