ci: pin all GitHub Actions to full commit SHAs - #53
Merged
mergify[bot] merged 1 commit intoSep 23, 2026
Merged
mergify[bot] merged 1 commit into
mergify[bot] merged 1 commit into
Conversation
The org now enforces SHA pinning for Actions (policy enabled 2026-09-09), so every job on main and every open PR has been failing before it even runs: "The actions actions/checkout@v7.0.1 and astral-sh/setup-uv@v10.1.0 are not allowed in Mergifyio/alembic-git-revisions because all actions must be pinned to a full-length commit SHA." Pin actions/checkout, astral-sh/setup-uv and (in release.yaml) pypa/gh-action-pypi-publish to their current commit SHAs, each with a trailing comment naming the tag or branch so Dependabot keeps updating them. This also carries the pending setup-uv 10.0.1 -> 10.1.0 bump (supersedes #52, whose branch has the same failure). astral-sh/setup-uv@v10.1.0 -> bec219d24cd3e171d82865faccec33120bb574f4 actions/checkout@v7.0.1 -> 3d3c42e5aac5ba805825da76410c181273ba90b1 pypa/gh-action-pypi-publish@release/v1 -> dc37677b2e1c63e2034f94d8a5b11f265b73ba33 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Change-Id: I3f4a84f17f012d7b29f722bcc1ff5f067a539b65
Contributor
Merge Protections🟢 All 6 merge protections satisfied — ready to merge. Show 6 satisfied protections🟢 🤖 Continuous Integration
🟢 👀 Review Requirements
🟢 Enforce conventional commitMake sure that we follow https://www.conventionalcommits.org/en/v1.0.0/
🟢 🔎 Reviews
🟢 📕 PR description
🟢 🚦 Auto-queueWhen all merge protections are satisfied, this pull request will be queued automatically. |
There was a problem hiding this comment.
Copilot review overview
🟢 Approval recommended
No unresolved review issues were identified.
Review effort: Lite
Findings: None
What changed in this PR
Pins GitHub Actions to full commit SHAs to satisfy repository policy.
Changes:
- Pinned checkout and setup-uv in CI and release workflows.
- Pinned the PyPI publishing action.
- Retained version comments for Dependabot updates.
| File | Description |
|---|---|
.github/workflows/ci.yaml |
Pins CI actions to full commit SHAs. |
.github/workflows/release.yaml |
Pins release and publishing actions to full commit SHAs. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
jd
marked this pull request as ready for review
September 23, 2026 09:16
Member
Author
|
@Mergifyio queue |
Contributor
Merge Queue Status
This pull request spent 12 seconds in the queue, including 1 second running CI. Required conditions to merge
|
kozlek
approved these changes
Sep 23, 2026
mergify
Bot
deleted the
devs/jd/jd/setup-uv-10-1/pin-github-actions-full-commit-shas--3f4a84f1
branch
September 23, 2026 10:40
This branch was successfully deployed
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 org now enforces SHA pinning for Actions (policy enabled
2026-09-09), so every job on main and every open PR has been failing
before it even runs: "The actions actions/checkout@v7.0.1 and
astral-sh/setup-uv@v10.1.0 are not allowed in Mergifyio/alembic-git-revisions
because all actions must be pinned to a full-length commit SHA."
Pin actions/checkout, astral-sh/setup-uv and (in release.yaml)
pypa/gh-action-pypi-publish to their current commit SHAs, each with a
trailing comment naming the tag or branch so Dependabot keeps updating
them. This also carries the pending setup-uv 10.0.1 -> 10.1.0 bump
(supersedes #52, whose branch has the same failure).
astral-sh/setup-uv@v10.1.0 -> bec219d24cd3e171d82865faccec33120bb574f4
actions/checkout@v7.0.1 -> 3d3c42e5aac5ba805825da76410c181273ba90b1
pypa/gh-action-pypi-publish@release/v1 -> dc37677b2e1c63e2034f94d8a5b11f265b73ba33
Co-Authored-By: Claude Sonnet 5 noreply@anthropic.com