Skip to content

Commit b8e20e3

Browse files
rustyconoverclaude
andcommitted
ci: ignore aiohttp in Dependabot (unsolvable downstream)
The security updater fails every run trying to bump aiohttp for its CVEs: vgi-rpc[external] caps aiohttp <3.14 but the fixes are only in >=3.14, so the resolution is unsatisfiable. Ignore aiohttp here to stop the recurring "Dependabot Updates" failure; the alerts remain visible. Lifting the cap upstream in vgi-rpc-python is the actual fix. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent fc47e40 commit b8e20e3

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ updates:
1919
update-types:
2020
- "minor"
2121
- "patch"
22+
ignore:
23+
# aiohttp is transitive via vgi-rpc[external], which caps it at <3.14.
24+
# The aiohttp CVE fixes only exist in >=3.14, so no bump is resolvable
25+
# from this repo — the security updater errors out every run with
26+
# "requirements are unsatisfiable". Ignore it here so Dependabot stops
27+
# failing on an impossible update; the alerts stay visible in the
28+
# security tab. The real fix is lifting the cap upstream in vgi-rpc.
29+
- dependency-name: "aiohttp"
2230

2331
# GitHub Actions used by the workflows in .github/workflows/.
2432
- package-ecosystem: "github-actions"

0 commit comments

Comments
 (0)