Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/public-repo-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
name: Secrets + content policy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

# gitleaks' GitHub Action requires a paid license for organizations; the CLI
# itself is MIT-licensed and free. Pin the version AND verify the release
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/moq-draft-drift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown

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/@v5 straight 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 on ubuntu-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.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The 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

workflow-templates/moq-draft-drift.yml:26 moved from a floating actions/checkout@v5 to a full digest. That is consistent with helpers:pinGitHubActionDigests in renovate.json, but repos that copy this template and do NOT run Renovate will now be frozen on this exact commit with no automatic patch updates. Worth confirming the template consumers are all Renovate-managed.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.


- name: Fetch shared drift-check script if not present
run: |
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/per-commit-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Run checks
run: echo "replace with your build / test / lint"
2 changes: 1 addition & 1 deletion workflow-templates/public-repo-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
name: Secrets + content policy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

# gitleaks' GitHub Action requires a paid license for organizations; the CLI
# itself is MIT-licensed and free. Pin the version AND verify the release
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Publish
run: echo "replace with your release / publish step"
2 changes: 1 addition & 1 deletion workflow-templates/reusable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Reusable step
run: echo "reusable logic here (no concurrency block belongs in this file)"
2 changes: 1 addition & 1 deletion workflow-templates/scheduled-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Scheduled task
run: echo "replace with your scheduled task"