diff --git a/.github/workflows/_python-security.yml b/.github/workflows/_python-security.yml index 949d776..a05115b 100644 --- a/.github/workflows/_python-security.yml +++ b/.github/workflows/_python-security.yml @@ -40,11 +40,6 @@ jobs: # hashes are present, which would cause pip / pip-audit to fail with # "editable requirement cannot be installed when requiring hashes". uv export --format requirements-txt --output-file requirements.txt --locked --no-emit-project - # GHSA-5239-wwwm-4pmq (CVE-2026-4539): ReDoS in pygments AdlLexer — transitive dep via - # rich and pytest; only triggered when parsing ADL files (not done here); no fix yet. - # Remove this flag once pygments releases a patched version (tracked in nix-ai#355). - uvx pip-audit --progress-spinner=off --desc \ - --ignore-vuln GHSA-5239-wwwm-4pmq \ - -r requirements.txt + uvx pip-audit --progress-spinner=off --desc -r requirements.txt echo "::endgroup::" done diff --git a/osv-scanner.toml b/osv-scanner.toml index ac52245..d2050e4 100644 --- a/osv-scanner.toml +++ b/osv-scanner.toml @@ -6,29 +6,3 @@ # Remove entries promptly when upgrades land. # # Repos can override with a local osv-scanner.toml (takes precedence). - -# pygments 2.19.2 — Low severity (3.3), ReDoS in AdlLexer -# No patched version available upstream -[[IgnoredVulns]] -id = "GHSA-5239-wwwm-4pmq" -reason = "pygments 2.19.2 is the latest version; no fix available upstream" - -# nltk 3.9.3 — High severity (7.5), no patched version for this CVE -[[IgnoredVulns]] -id = "GHSA-jm6w-m3j8-898g" -reason = "nltk 3.9.3 has no fix for this CVE" - -# nltk 3.9.3 — Medium severity (5.1), no patched version available -[[IgnoredVulns]] -id = "GHSA-rf74-v2fm-23pw" -reason = "nltk 3.9.3 has no fix available upstream" - -# nltk 3.9.3 — Medium severity (6.1), fix available in 3.9.4 -[[IgnoredVulns]] -id = "GHSA-gfwx-w7gr-fvh7" -reason = "nltk upgrade to 3.9.4 pending Renovate PR" - -# requests 2.32.5 — Medium severity (4.4), fix available in 2.33.0 -[[IgnoredVulns]] -id = "GHSA-gc5v-m9x4-r6x2" -reason = "requests upgrade to 2.33.0 pending Renovate PR"