Skip to content

Commit e192152

Browse files
ci(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 94b268d commit e192152

10 files changed

+35
-35
lines changed

.github/workflows/auto-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2121
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
2222

23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
token: ${{ steps.token.outputs.token }}
2626
fetch-depth: 0

.github/workflows/build.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
pull-requests: read
7272
steps:
7373
- name: Check out current commit
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v5
7575
with:
7676
ref: ${{ env.HEAD_COMMIT }}
7777
# We need to check out not only the fake merge commit between the PR and the base branch which GH creates, but
@@ -131,13 +131,13 @@ jobs:
131131
(needs.job_get_metadata.outputs.is_gitflow_sync == 'false' && needs.job_get_metadata.outputs.has_gitflow_label == 'false')
132132
steps:
133133
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
134-
uses: actions/checkout@v4
134+
uses: actions/checkout@v5
135135
if: github.event_name == 'pull_request'
136136
with:
137137
ref: ${{ github.event.pull_request.base.sha }}
138138

139139
- name: 'Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})'
140-
uses: actions/checkout@v4
140+
uses: actions/checkout@v5
141141
with:
142142
ref: ${{ env.HEAD_COMMIT }}
143143

@@ -238,7 +238,7 @@ jobs:
238238
needs.job_get_metadata.outputs.is_release == 'true'
239239
steps:
240240
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
241-
uses: actions/checkout@v4
241+
uses: actions/checkout@v5
242242
with:
243243
ref: ${{ env.HEAD_COMMIT }}
244244
- name: Set up Node
@@ -267,7 +267,7 @@ jobs:
267267
needs.job_get_metadata.outputs.is_base_branch == 'true' || needs.job_get_metadata.outputs.is_release == 'true'
268268
steps:
269269
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
270-
uses: actions/checkout@v4
270+
uses: actions/checkout@v5
271271
with:
272272
ref: ${{ env.HEAD_COMMIT }}
273273
- name: Set up Node
@@ -296,7 +296,7 @@ jobs:
296296
runs-on: ubuntu-24.04
297297
steps:
298298
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
299-
uses: actions/checkout@v4
299+
uses: actions/checkout@v5
300300
with:
301301
ref: ${{ env.HEAD_COMMIT }}
302302
- name: Set up Node
@@ -322,7 +322,7 @@ jobs:
322322
runs-on: ubuntu-24.04
323323
steps:
324324
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
325-
uses: actions/checkout@v4
325+
uses: actions/checkout@v5
326326
with:
327327
ref: ${{ env.HEAD_COMMIT }}
328328

@@ -345,7 +345,7 @@ jobs:
345345
runs-on: ubuntu-24.04
346346
steps:
347347
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
348-
uses: actions/checkout@v4
348+
uses: actions/checkout@v5
349349
with:
350350
ref: ${{ env.HEAD_COMMIT }}
351351
- name: Set up Node
@@ -367,7 +367,7 @@ jobs:
367367
if: needs.job_get_metadata.outputs.is_release == 'true'
368368
steps:
369369
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
370-
uses: actions/checkout@v4
370+
uses: actions/checkout@v5
371371
with:
372372
ref: ${{ env.HEAD_COMMIT }}
373373
- name: Set up Node
@@ -402,13 +402,13 @@ jobs:
402402
runs-on: ubuntu-24.04
403403
steps:
404404
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
405-
uses: actions/checkout@v4
405+
uses: actions/checkout@v5
406406
if: github.event_name == 'pull_request'
407407
with:
408408
ref: ${{ github.event.pull_request.base.sha }}
409409

410410
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
411-
uses: actions/checkout@v4
411+
uses: actions/checkout@v5
412412
with:
413413
ref: ${{ env.HEAD_COMMIT }}
414414
- name: Set up Node
@@ -449,7 +449,7 @@ jobs:
449449
runs-on: ubuntu-24.04
450450
steps:
451451
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
452-
uses: actions/checkout@v4
452+
uses: actions/checkout@v5
453453
with:
454454
ref: ${{ env.HEAD_COMMIT }}
455455
- name: Set up Node
@@ -474,7 +474,7 @@ jobs:
474474
runs-on: ubuntu-24.04
475475
steps:
476476
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
477-
uses: actions/checkout@v4
477+
uses: actions/checkout@v5
478478
with:
479479
ref: ${{ env.HEAD_COMMIT }}
480480
- name: Set up Node
@@ -506,12 +506,12 @@ jobs:
506506
node: [18, 20, 22, 24]
507507
steps:
508508
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
509-
uses: actions/checkout@v4
509+
uses: actions/checkout@v5
510510
if: github.event_name == 'pull_request'
511511
with:
512512
ref: ${{ github.event.pull_request.base.sha }}
513513
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
514-
uses: actions/checkout@v4
514+
uses: actions/checkout@v5
515515
with:
516516
ref: ${{ env.HEAD_COMMIT }}
517517
- name: Set up Node
@@ -600,7 +600,7 @@ jobs:
600600

601601
steps:
602602
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
603-
uses: actions/checkout@v4
603+
uses: actions/checkout@v5
604604
with:
605605
ref: ${{ env.HEAD_COMMIT }}
606606
- name: Set up Node
@@ -664,7 +664,7 @@ jobs:
664664

665665
steps:
666666
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
667-
uses: actions/checkout@v4
667+
uses: actions/checkout@v5
668668
with:
669669
ref: ${{ env.HEAD_COMMIT }}
670670
- name: Set up Node
@@ -712,7 +712,7 @@ jobs:
712712
timeout-minutes: 5
713713
steps:
714714
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
715-
uses: actions/checkout@v4
715+
uses: actions/checkout@v5
716716
with:
717717
ref: ${{ env.HEAD_COMMIT }}
718718
- name: Set up Node
@@ -750,7 +750,7 @@ jobs:
750750
typescript: '3.8'
751751
steps:
752752
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
753-
uses: actions/checkout@v4
753+
uses: actions/checkout@v5
754754
with:
755755
ref: ${{ env.HEAD_COMMIT }}
756756
- name: Set up Node
@@ -786,7 +786,7 @@ jobs:
786786
timeout-minutes: 15
787787
steps:
788788
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
789-
uses: actions/checkout@v4
789+
uses: actions/checkout@v5
790790
with:
791791
ref: ${{ env.HEAD_COMMIT }}
792792
- name: Set up Node
@@ -814,7 +814,7 @@ jobs:
814814
node: [18, 20, 22, 24]
815815
steps:
816816
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
817-
uses: actions/checkout@v4
817+
uses: actions/checkout@v5
818818
with:
819819
ref: ${{ env.HEAD_COMMIT }}
820820
- name: Set up Node
@@ -861,12 +861,12 @@ jobs:
861861
matrix-optional: ${{ steps.matrix-optional.outputs.matrix }}
862862
steps:
863863
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
864-
uses: actions/checkout@v4
864+
uses: actions/checkout@v5
865865
if: github.event_name == 'pull_request'
866866
with:
867867
ref: ${{ github.event.pull_request.base.sha }}
868868
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
869-
uses: actions/checkout@v4
869+
uses: actions/checkout@v5
870870
with:
871871
ref: ${{ env.HEAD_COMMIT }}
872872
- name: Set up Node
@@ -931,7 +931,7 @@ jobs:
931931
matrix: ${{ fromJson(needs.job_e2e_prepare.outputs.matrix) }}
932932
steps:
933933
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
934-
uses: actions/checkout@v4
934+
uses: actions/checkout@v5
935935
with:
936936
ref: ${{ env.HEAD_COMMIT }}
937937
- uses: pnpm/action-setup@v4
@@ -1061,7 +1061,7 @@ jobs:
10611061

10621062
steps:
10631063
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
1064-
uses: actions/checkout@v4
1064+
uses: actions/checkout@v5
10651065
with:
10661066
ref: ${{ env.HEAD_COMMIT }}
10671067
- uses: pnpm/action-setup@v4

.github/workflows/canary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
timeout-minutes: 30
3232
steps:
3333
- name: Check out current commit
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
ref: ${{ env.HEAD_COMMIT }}
3737
- name: Set up Node
@@ -120,7 +120,7 @@ jobs:
120120

121121
steps:
122122
- name: Check out current commit
123-
uses: actions/checkout@v4
123+
uses: actions/checkout@v5
124124
with:
125125
ref: ${{ env.HEAD_COMMIT }}
126126
- uses: pnpm/action-setup@v4

.github/workflows/cleanup-pr-caches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: read
1515
steps:
1616
- name: Check out code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Cleanup
2020
run: |

.github/workflows/clear-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: Delete all caches
2424
runs-on: ubuntu-24.04
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727

2828
- name: Set up Node
2929
uses: actions/setup-node@v4

.github/workflows/codeql-analysis.yml

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

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/external-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
&& github.event.pull_request.author_association != 'OWNER'
2121
&& endsWith(github.event.pull_request.user.login, '[bot]') == false
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- name: Set up Node
2525
uses: actions/setup-node@v4
2626
with:

.github/workflows/flaky-test-detector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: ${{ github.base_ref != 'master' && github.ref != 'refs/heads/master' }}
3131
steps:
3232
- name: Check out current branch
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
- name: Set up Node
3535
uses: actions/setup-node@v4
3636
with:

.github/workflows/gitflow-sync-develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: write
2424
steps:
2525
- name: git checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
# https://github.com/marketplace/actions/github-pull-request-action
2929
- name: Create Pull Request

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2525
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
token: ${{ steps.token.outputs.token }}
2929
fetch-depth: 0

0 commit comments

Comments
 (0)