Skip to content

Commit 37f0f41

Browse files
⬆️ Update actions/checkout action to v6
1 parent db4fcea commit 37f0f41

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
actions: read # Required for Claude to read CI results on PRs
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3030
with:
3131
fetch-depth: 1
3232

.github/workflows/close-issues-on-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Check out repository (with full history)
17-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1818
with:
1919
fetch-depth: 0 # ✅ Required so git can see both commits in the range
2020

.github/workflows/deploy.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
34+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3535

3636
- name: Setup PHP
3737
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2
@@ -164,7 +164,7 @@ jobs:
164164
hash: ${{ steps.get_hash.outputs.hash }}
165165
steps:
166166
- name: Checkout
167-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
167+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
168168
with:
169169
fetch-depth: 0
170170
- name: Setup Node.js
@@ -213,7 +213,7 @@ jobs:
213213
with:
214214
app-id: ${{ secrets.GH_APP_ID }}
215215
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
216-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
216+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
217217
with:
218218
fetch-depth: 0
219219

@@ -298,7 +298,7 @@ jobs:
298298
with:
299299
app-id: ${{ secrets.GH_APP_ID }}
300300
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
301-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
301+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
302302
with:
303303
fetch-depth: 0
304304

@@ -374,7 +374,7 @@ jobs:
374374
issues: write
375375
pull-requests: write
376376
steps:
377-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
377+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
378378
with:
379379
fetch-depth: 0
380380
- name: Create Sentry release
@@ -418,7 +418,7 @@ jobs:
418418
issues: write
419419
pull-requests: write
420420
steps:
421-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
421+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
422422
with:
423423
fetch-depth: 0
424424
- name: Create Sentry release
@@ -467,7 +467,7 @@ jobs:
467467
with:
468468
app-id: ${{ secrets.GH_APP_ID }}
469469
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
470-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
470+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
471471
with:
472472
fetch-depth: 0
473473
- name: Sync Branch

.github/workflows/dust_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: xt0rted/pull-request-comment-branch@e8b8daa837e8ea7331c0003c9c316a64c6d8b0b1 # v3
3030
id: comment-branch
3131

32-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
32+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3333
with:
3434
ref: ${{ github.event_name == 'issue_comment' && steps.comment-branch.outputs.head_ref || github.event.pull_request.head.ref }}
3535
repository: ${{ github.event_name == 'issue_comment' && steps.comment-branch.outputs.head_repo || github.event.pull_request.head.repo.full_name }}
@@ -77,7 +77,7 @@ jobs:
7777
id: comment-branch
7878

7979
- name: Checkout
80-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
80+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
8181
with:
8282
# Use the commit SHA from duster to ensure we test the code after any duster fixes
8383
ref: ${{ needs.duster.outputs.commit_sha }}

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
app-id: ${{ secrets.GH_APP_ID }}
2121
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
2222
- name: Checkout the latest code
23-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2424
with:
2525
token: ${{ steps.app_token.outputs.token }}
2626
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

0 commit comments

Comments
 (0)