cp: ci: Address setuptools CVE (1438) into r1.1.0 - #1440
Closed
thomasdhc wants to merge 1 commit into
Closed
Conversation
* Address CVE fixes Signed-off-by: Dong Hyuk Chang <donghyukc@nvidia.com> * Remove cache of aiohttp from ray Signed-off-by: Dong Hyuk Chang <donghyukc@nvidia.com> * Update uv lock Signed-off-by: Dong Hyuk Chang <donghyukc@nvidia.com> * Update cache path Signed-off-by: Dong Hyuk Chang <donghyukc@nvidia.com> --------- Signed-off-by: Dong Hyuk Chang <donghyukc@nvidia.com> Signed-off-by: NeMo Bot <nemo-bot@nvidia.com>
Contributor
Author
|
/ok to test 8d09d0e |
Contributor
Greptile OverviewGreptile SummaryThis PR cherry-picks security fixes from #1438 to address multiple CVE vulnerabilities by updating package constraints and cleaning cached dependencies. Key changes:
The changes are straightforward dependency version bumps to patch known security vulnerabilities. The cherry-pick appears clean with no merge conflicts. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant UV as UV Package Manager
participant PyPI as PyPI Registry
participant Docker as Docker Build
participant Cache as UV Cache
Dev->>UV: Update pyproject.toml with CVE constraints
Note over UV: setuptools>=80.10.1<br/>wheel>=0.46.2<br/>pyasn1>=0.6.2
Dev->>UV: Run uv lock
UV->>PyPI: Resolve dependencies with constraints
PyPI-->>UV: Return setuptools 80.10.2, wheel 0.46.3
UV->>UV: Generate uv.lock with updated versions
Dev->>Docker: Build Docker image
Docker->>UV: uv sync with locked dependencies
UV->>Cache: Install dependencies to cache
Cache-->>UV: Dependencies installed
Docker->>Cache: Clean vulnerable aiohttp from ray cache
Note over Cache: Remove ray/_private/runtime_env/<br/>agent/thirdparty_files/aiohttp*
Docker-->>Dev: Image built with patched dependencies
|
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.
beep boop [🤖]: Hi @thomasdhc 👋,