v0.105.4 — pluggable work queue for cloud backends #204
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
| name: Security Audit | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'pyproject.toml' | |
| - 'uv.lock' | |
| pull_request: | |
| paths: | |
| - 'pyproject.toml' | |
| - 'uv.lock' | |
| schedule: | |
| # Run weekly on Monday at 08:00 UTC | |
| - cron: '0 8 * * 1' | |
| jobs: | |
| pip-audit: | |
| name: Audit Python dependencies | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| - name: Set up Python | |
| run: uv python install 3.12 | |
| - name: Install pip-audit | |
| run: pip install pip-audit | |
| - name: Audit dependencies | |
| run: uv export --frozen --no-hashes --no-emit-project > /tmp/requirements.txt && pip-audit -r /tmp/requirements.txt --desc |