Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,15 @@ jobs:

- uses: ./.github/actions/setup-python-env

# CVE-2026-3219: pip's concatenated tar/zip handling. Ignored because pip
# itself is a CI-time tool (used to install deps), not in any runtime
# surface our trading code or agent ship. Re-audit and drop the flag
# when uv resolves to a patched pip release.
# CVE-2026-3219 (pip's concatenated tar/zip handling) and CVE-2026-6357
# (pip's self-update path imports newly-installed modules) both affect
# pip itself. Ignored because pip is only a CI-time tool here (used by
# uv to install deps); it is not in any runtime surface our trading
# code or agent ships, and we do not invoke pip's self-update flow.
# Re-audit and drop the flags when uv resolves to a patched pip
# release.
- name: Audit dependencies with pip-audit
run: uv run pip-audit --strict --desc --ignore-vuln CVE-2026-3219
run: uv run pip-audit --strict --desc --ignore-vuln CVE-2026-3219 --ignore-vuln CVE-2026-6357

sast:
runs-on: ubuntu-latest
Expand Down
Loading