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 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@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔍 Two different digests both labelled v5 for actions/checkout across templates

This template is now pinned to actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5, while the already-pinned workflow-templates/public-repo-guard.yml:45 (and .github/workflows/public-repo-guard.yml:45) uses 93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1. Two distinct commits carrying the same major-version comment is worth a quick verification that fbc6f39… really is the commit the v5 tag points at today (i.e. a newer v5.0.x), otherwise the org templates ship an older checkout than the guard workflow and the # v5 comment is misleading for future manual bumps. Also note the comment style differs (single vs double space before #), a cosmetic inconsistency across the template set.

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@11d5960a326750d5838078e36cf38b85af677262 # v4
- name: Run checks
run: echo "replace with your build / test / lint"
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@11d5960a326750d5838078e36cf38b85af677262 # v4
- 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@11d5960a326750d5838078e36cf38b85af677262 # v4
- 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@11d5960a326750d5838078e36cf38b85af677262 # v4
- name: Scheduled task
run: echo "replace with your scheduled task"