Skip to content

Commit 74319b5

Browse files
fix(ci): SHA-pin actions/checkout in cowork-auto-pr workflow
The cowork-auto-pr.yml workflow used unpinned actions/checkout@v4 while all other workflows (ci.yml, publish.yml, release-audit.yml) use SHA-pinned versions. This creates supply-chain risk and inconsistency. Pinned to d23441a48e516b6c34aea4fa41551a30e30af803 (v6) to match the fleet standard.
1 parent 7b1512a commit 74319b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/cowork-auto-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# without this step every run failed with "not a git repository" and no
1717
# PR was ever opened (fleet-wide defect: 11/11 seeded copies lacked it).
1818
- name: Check out the pushed branch
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
2020
with:
2121
ref: ${{ github.ref_name }}
2222
fetch-depth: 0

0 commit comments

Comments
 (0)