-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update actions/checkout action to v7 #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,7 +23,7 @@ jobs: | |
| name: Check MoQ Transport draft version drift | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 Template previously used a floating tag; now digest-pinned, which changes consumer update semantics
Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
| - name: Fetch shared drift-check script if not present | ||
| run: | | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔍 Major-version jump of checkout in templates — verify runner/Node requirements
Templates move from
actions/checkout@v4/@v5straight to a v7 digest. Major bumps of checkout historically changed the bundled Node runtime, which can break self-hosted or older runner images that consumers of these workflow templates may use. All templates here run onubuntu-latest, so hosted runners are fine, but downstream repos copying these templates onto other runners should be checked. Worth confirming the digest actually corresponds to the v7.0.1 tag before merge, since a mispinned digest silently pins a different commit.Was this helpful? React with 👍 or 👎 to provide feedback.