Update lockfile to remediate Trivy-reported aiohttp CVEs in CI#20
Merged
Conversation
Closed
Copilot
AI
changed the title
[WIP] Fix super-linter failure due to impostor-commit error
Fix action pin updates to use commit SHAs for annotated tags
Jun 5, 2026
Copilot
AI
changed the title
Fix action pin updates to use commit SHAs for annotated tags
Update lockfile to remediate Trivy-reported aiohttp CVEs in CI
Jun 5, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s Python lockfile to move off a Trivy-flagged aiohttp version, ensuring CI resolves a non-vulnerable release while keeping the existing Python compatibility target (>=3.13).
Changes:
- Regenerated
uv.lock, updating the lockedaiohttppackage to3.14.0. - Simplified
ci/update_versions.shby removing the special-case action exception and using a unified tag-resolution strategy (annotated tag first, then fallback).
Quality gates (project): ensure make fmt and make lint pass for these changes.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
uv.lock |
Updates locked dependencies so CI resolves aiohttp==3.14.0 instead of the vulnerable version. |
ci/update_versions.sh |
Simplifies GitHub Action version pin update logic while preserving fallback behavior. |
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.
The super-linter workflow was failing in the Trivy step because
uv.lockpinnedaiohttp==3.13.5, which is flagged forCVE-2026-34993andCVE-2026-47265. This PR updates the lockfile so CI no longer resolves the vulnerable version.Dependency remediation
aiohttpfrom3.13.5to3.14.0inuv.lock.Lockfile regeneration scope
uv.lockwith the same Python compatibility target (>=3.13) to keep the change focused on the vulnerable package update rather than broad resolver drift.