Skip to content

Commit e7e4bd2

Browse files
fix: skip pygments CVE-2026-4539 in pip-audit (no upstream fix available)
1 parent 795aea9 commit e7e4bd2

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,11 @@ jobs:
6464
pip install pip-audit
6565
6666
- name: Run pip-audit
67-
run: pip-audit
67+
run: |
68+
# Skip CVEs with no fix available upstream.
69+
# CVE-2026-4539: pygments 2.19.2 — no patched version released yet.
70+
# Remove --ignore-vuln flags as upstream fixes become available.
71+
pip-audit --ignore-vuln CVE-2026-4539
6872
6973
sbom:
7074
name: Generate SBOM

0 commit comments

Comments
 (0)