refactor: promote gds-proof to Layer 1 with gds-framework integration #70
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] | |
| jobs: | |
| dependency-audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: "3.12" | |
| - run: uv sync --all-packages | |
| # CVE-2026-4539: pygments 2.19.2 (latest) — no fix available yet. | |
| # Transitive dep from pytest, mkdocs-material, marimo, rich. | |
| # Remove this ignore when pygments releases a patched version. | |
| - run: uv tool run pip-audit --ignore-vuln CVE-2026-4539 |