Replace curl|sh uv install with pip install uv in weekly-checks #71
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 two
curl -LsSf https://astral.sh/uv/install.sh | sh+ path-export steps in weekly-checks.yml withpip install uvin each job.