ci: ignore pip CVE-2026-6357 in dependency-audit#184
Merged
costajohnt merged 1 commit intomainfrom May 7, 2026
Merged
Conversation
A pip CVE published since the last green main run is failing dependency-audit on every PR. pip is only a CI-time tool here (used by uv to install deps) and we do not invoke pip's self-update flow, so suppress the finding alongside the existing CVE-2026-3219 ignore. Re-audit and drop both flags when uv pulls a patched pip. Verified locally: pip-audit reports "No known vulnerabilities found, 2 ignored". Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
dependency-auditon every PR. Adds the CVE to the existing--ignore-vulnlist inci.ymlalongside CVE-2026-3219.Context
The CVE affects pip's self-update flow (importing newly-installed modules during the post-install self-update check). 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 path. Same rationale as the pre-existing CVE-2026-3219 ignore.
Verified locally:
uv run pip-audit --strict --desc --ignore-vuln CVE-2026-3219 --ignore-vuln CVE-2026-6357reports "No known vulnerabilities found, 2 ignored".Re-audit and drop both flags when uv pulls a patched pip (>= 26.1).
Test plan