Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/actions/setup-python-uv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,12 @@ inputs:
runs:
using: composite
steps:
# setup-uv publishes no floating major tag (only v8.x.y). The full commit SHA
# and readable release comment keep execution immutable and updates reviewable.
- uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
# setup-uv publishes no floating major tag (only vX.Y.Z — `v9` 404s upstream).
# The full commit SHA and readable release comment keep execution immutable and
# updates reviewable. The comment must name the exact version, never `# v9`:
# zizmor's ref-version-mismatch resolves it upstream and a float turns red on
# the next patch release.
- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
with:
enable-cache: true
- name: Pin Python
Expand Down
Loading