build(deps): bump the python-deps group with 2 updates #73
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # zizmor — static analysis for GitHub Actions workflows | |
| # Docs: https://docs.zizmor.sh + https://github.com/zizmorcore/zizmor-action | |
| name: Workflow Security Audit (zizmor) | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/**" | |
| - ".github/dependabot.yml" | |
| pull_request: # no path filter: runs on every PR so it can be a required gate | |
| schedule: | |
| - cron: "13 6 * * 1" # Mondays 06:13 UTC | |
| permissions: {} | |
| jobs: | |
| zizmor: | |
| name: zizmor workflow audit | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write # upload SARIF to Code Scanning (no-op on private repos without GHAS) | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Run zizmor | |
| # zizmor exits non-zero bei Findings -> dieser Step GATET die CI (rot = blockt merge). | |
| env: | |
| # [2026-05-23] Provide GH_TOKEN to authenticate zizmor's impostor- | |
| # commit check API calls. Without this, the audit hits unauthenticated | |
| # GitHub REST rate limits (60/h) and skips checks with 'fast path | |
| # impostor check failed: request error while accessing GitHub API'. | |
| # See docs.zizmor.sh + zizmorcore/zizmor#764 for context. | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| uses: zizmorcore/zizmor-action@3dc1ecc9bcb9e94e9b2c709687979e1298497054 # v0.6.2 | |
| with: | |
| persona: regular | |
| # [2026-06-06] Online-Audits AKTIV; nur impostor-commit ist per | |
| # .github/zizmor.yml deaktiviert (crasht am privaten Cross-Repo-Pin | |
| # coworkerz-ci — repo-scoped GITHUB_TOKEN, docs.zizmor.sh). Das ist | |
| # die praezisere Loesung gegenueber online-audits:false (Webrecherche | |
| # 06-06): known-vulnerable-actions + stale-action-refs bleiben aktiv. | |
| # privates Repo ohne GHAS: kein Action-internes Code-Scanning-Upload (wirft sonst | |
| # "Resource not accessible"). Stattdessen Findings als inline-Annotationen. | |
| advanced-security: false | |
| annotations: true | |