Skip to content

Commit bb4c882

Browse files
Bump actions/checkout from 4.2.2 to 6.0.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@11bd719...1af3b93) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 08d705b commit bb4c882

File tree

7 files changed

+30
-30
lines changed

7 files changed

+30
-30
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
egress-policy: audit
4949

5050
- name: Checkout repository
51-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
51+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5252

5353
# Initializes the CodeQL tools for scanning.
5454
- name: Initialize CodeQL

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
egress-policy: audit
2323

2424
- name: 'Checkout Repository'
25-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2626
- name: 'Dependency Review'
2727
uses: actions/dependency-review-action@67d4f4bd7a9b17a0db54d2a7519187c65e339de8 # v4

.github/workflows/matrix-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
egress-policy: audit
2323

2424
- name: Checkout
25-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2626
with:
2727
fetch-depth: 0
2828
- name: Get changed files
@@ -49,7 +49,7 @@ jobs:
4949
egress-policy: audit
5050

5151
- name: Checkout
52-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
52+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5353
- name: Test
5454
run: |
5555
echo ${{ matrix.files }}

.github/workflows/multi-job-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
egress-policy: audit
2525

2626
- name: Checkout
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2828
with:
2929
fetch-depth: 0
3030
- name: Get changed files
@@ -60,7 +60,7 @@ jobs:
6060
egress-policy: audit
6161

6262
- name: Checkout
63-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
63+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
6464
with:
6565
fetch-depth: 0
6666
- name: Get changed files

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
egress-policy: audit
4242

4343
- name: "Checkout code"
44-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
44+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4545
with:
4646
persist-credentials: false
4747

.github/workflows/test.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
egress-policy: audit
4545

46-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
46+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4747
with:
4848
persist-credentials: false
4949
fetch-depth: 0
@@ -96,7 +96,7 @@ jobs:
9696
# contents: read
9797
# steps:
9898
# - name: Checkout into dir1
99-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
99+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
100100
# with:
101101
# repository: ${{ github.event.pull_request.head.repo.full_name }}
102102
# submodules: true
@@ -136,7 +136,7 @@ jobs:
136136
# path: dir2/dist
137137

138138
# - name: Checkout into dir2
139-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
139+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
140140
# with:
141141
# repository: ${{ github.event.pull_request.head.repo.full_name }}
142142
# submodules: true
@@ -172,7 +172,7 @@ jobs:
172172
# contents: read
173173
# steps:
174174
# - name: Checkout branch
175-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
175+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
176176
# with:
177177
# repository: ${{ github.event.pull_request.head.repo.full_name }}
178178
# fetch-depth: 0
@@ -232,7 +232,7 @@ jobs:
232232

233233
# steps:
234234
# - name: Checkout branch
235-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
235+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
236236
# with:
237237
# repository: ${{ github.event.pull_request.head.repo.full_name }}
238238
# fetch-depth: 0
@@ -276,7 +276,7 @@ jobs:
276276

277277
# steps:
278278
# - name: Checkout branch
279-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
279+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
280280
# with:
281281
# repository: ${{ github.event.pull_request.head.repo.full_name }}
282282
# fetch-depth: 0
@@ -315,7 +315,7 @@ jobs:
315315

316316
# steps:
317317
# - name: Checkout branch
318-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
318+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
319319
# with:
320320
# repository: ${{ github.event.pull_request.head.repo.full_name }}
321321
# fetch-depth: ${{ matrix.fetch-depth }}
@@ -349,7 +349,7 @@ jobs:
349349

350350
# steps:
351351
# - name: Checkout branch
352-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
352+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
353353
# with:
354354
# ref: ${{ github.event.pull_request.head.sha }}
355355

@@ -383,7 +383,7 @@ jobs:
383383

384384
# steps:
385385
# - name: Checkout branch
386-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
386+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
387387
# with:
388388
# fetch-depth: ${{ matrix.fetch-depth }}
389389
# persist-credentials: false
@@ -413,7 +413,7 @@ jobs:
413413
# contents: read
414414
# steps:
415415
# - name: Checkout branch
416-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
416+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
417417

418418
# - name: Download build assets
419419
# uses: actions/download-artifact@v4
@@ -468,7 +468,7 @@ jobs:
468468
# contents: read
469469
# steps:
470470
# - name: Checkout branch
471-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
471+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
472472

473473
# - name: Download build assets
474474
# uses: actions/download-artifact@v4
@@ -523,7 +523,7 @@ jobs:
523523
# pull-requests: read
524524
# steps:
525525
# - name: Checkout into dir1
526-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
526+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
527527
# with:
528528
# repository: ${{ github.event.pull_request.head.repo.full_name }}
529529
# submodules: true
@@ -555,7 +555,7 @@ jobs:
555555
# contents: read
556556
# steps:
557557
# - name: Checkout branch
558-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
558+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
559559
# with:
560560
# repository: ${{ github.event.pull_request.head.repo.full_name }}
561561
# submodules: true
@@ -592,7 +592,7 @@ jobs:
592592
# contents: read
593593
# steps:
594594
# - name: Checkout into dir1
595-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
595+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
596596
# with:
597597
# repository: ${{ github.event.pull_request.head.repo.full_name }}
598598
# submodules: true
@@ -631,7 +631,7 @@ jobs:
631631

632632
# steps:
633633
# - name: Checkout branch
634-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
634+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
635635
# with:
636636
# ref: ${{ github.event.pull_request.head.sha || github.sha }}
637637
# submodules: recursive
@@ -697,7 +697,7 @@ jobs:
697697

698698
# steps:
699699
# - name: Checkout branch
700-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
700+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
701701
# with:
702702
# ref: ${{ github.event.pull_request.head.sha || github.sha }}
703703
# submodules: recursive
@@ -792,7 +792,7 @@ jobs:
792792

793793
# steps:
794794
# - name: Checkout branch
795-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
795+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
796796
# with:
797797
# ref: ${{ github.event.pull_request.head.sha || github.sha }}
798798
# submodules: recursive
@@ -978,7 +978,7 @@ jobs:
978978
# contents: read
979979
# steps:
980980
# - name: Checkout branch
981-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
981+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
982982
# with:
983983
# ref: 2c65f7da2a8dc85c1b5225d02d7088a3825a29c3
984984
# repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -1016,7 +1016,7 @@ jobs:
10161016
# contents: read
10171017
# steps:
10181018
# - name: Checkout branch
1019-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1019+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
10201020
# with:
10211021
# ref: ${{ github.event.pull_request.head.sha }}
10221022
# repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -1095,7 +1095,7 @@ jobs:
10951095

10961096
# steps:
10971097
# - name: Checkout branch
1098-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1098+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
10991099
# with:
11001100
# ref: ${{ github.event.pull_request.head.sha }}
11011101
# repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -1148,7 +1148,7 @@ jobs:
11481148

11491149
# steps:
11501150
# - name: Checkout
1151-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1151+
# uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
11521152
# with:
11531153
# submodules: true
11541154
# repository: ${{ github.event.pull_request.head.repo.full_name }}

.github/workflows/workflow-run-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
egress-policy: audit
1919

2020
- name: Checkout code
21-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2222

2323
- name: Get changed files
2424
id: changed-files
@@ -39,7 +39,7 @@ jobs:
3939
egress-policy: audit
4040

4141
- name: Checkout code
42-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4343

4444
- name: Get changed files
4545
id: changed-files

0 commit comments

Comments
 (0)