Replace curl|sh uv install with pip install uv in weekly-checks #24
Labels
No labels
bug
contribution welcome
duplicate
enhancement
good first issue
help wanted
invalid
question
upstream
No milestone
No assignees
1 participant
Notifications
Due date
No due date set.
Reference
marvin8/longwei#24
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The weekly-checks workflow installs uv via
curl | sh, which is an anti-pattern per the project's global guidelines. The approved alternative for shared runners ispip install uv.Fix: replace the
curl -LsSf https://astral.sh/uv/install.sh | sh+ path-export steps in weekly-checks.yml withpip install uv.