chore(deps): bump astral-sh/setup-uv from 10.0.1 to 10.1.0 in the actions group #237
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
| name: Security | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| osv-scan: | |
| name: Dependency Scan | |
| runs-on: blacksmith-2vcpu-ubuntu-2404-arm | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: useblacksmith/checkout@v1 | |
| - name: Install osv-scanner | |
| run: | | |
| curl -fsSL https://github.com/google/osv-scanner/releases/download/v2.5.1/osv-scanner_linux_arm64 -o osv-scanner | |
| chmod +x osv-scanner | |
| - name: Scan dependencies | |
| run: ./osv-scanner scan source --lockfile=uv.lock --format=table | |
| pip-audit: | |
| name: Python Audit | |
| runs-on: blacksmith-2vcpu-ubuntu-2404-arm | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: useblacksmith/checkout@v1 | |
| - uses: astral-sh/[email protected] | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.13" | |
| - name: Install pip-audit | |
| run: pip install pip-audit | |
| - name: Audit dependencies | |
| run: | | |
| uv export --format requirements-txt --no-hashes > requirements.txt | |
| pip-audit -r requirements.txt --disable-pip --no-deps | |