Skip to content
Closed
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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,14 @@ jobs:
bandit -r src/ -c pyproject.toml

- name: Run pip-audit for dependency vulnerabilities
# Disputed/contextual transitive vulnerabilities with no upstream fix.
# Review quarterly and remove once upstream patches land.
# PYSEC-2024-277 — joblib 1.5.3 NumpyArrayWrapper deserialization.
# Disputed by supplier (only used during caching of trusted content).
# PYSEC-2026-97 — nltk 3.9.4 filestring() arbitrary file read.
# Requires user-controlled path input; not exposed by template code.
run: |
pip-audit
pip-audit --ignore-vuln PYSEC-2024-277 --ignore-vuln PYSEC-2026-97

docs:
name: Documentation Check
Expand Down
Loading