Skip to content

Commit c2ca2c6

Browse files
GitHub Actions(deps): Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a71cdcb commit c2ca2c6

10 files changed

Lines changed: 66 additions & 66 deletions

.github/workflows/auto-assign.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
outputs:
2828
project_number: ${{ steps.resolve.outputs.project-number }}
2929
steps:
30-
- uses: actions/checkout@v6
30+
- uses: actions/checkout@v7
3131
- name: Checkout dev-tools workflow action source
32-
uses: actions/checkout@v6
32+
uses: actions/checkout@v7
3333
with:
3434
repository: php-fast-forward/dev-tools
3535
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -55,9 +55,9 @@ jobs:
5555
if: github.event_name == 'issues' && needs.resolve-project.outputs.project_number != ''
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@v6
58+
- uses: actions/checkout@v7
5959
- name: Checkout dev-tools workflow action source
60-
uses: actions/checkout@v6
60+
uses: actions/checkout@v7
6161
with:
6262
repository: php-fast-forward/dev-tools
6363
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -76,9 +76,9 @@ jobs:
7676
if: github.event_name == 'pull_request_target' && needs.resolve-project.outputs.project_number != ''
7777
runs-on: ubuntu-latest
7878
steps:
79-
- uses: actions/checkout@v6
79+
- uses: actions/checkout@v7
8080
- name: Checkout dev-tools workflow action source
81-
uses: actions/checkout@v6
81+
uses: actions/checkout@v7
8282
with:
8383
repository: php-fast-forward/dev-tools
8484
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -96,9 +96,9 @@ jobs:
9696
linked_issue_status: ${{ steps.compute.outputs.linked-issue-status }}
9797
pull_request_status: ${{ steps.compute.outputs.pull-request-status }}
9898
steps:
99-
- uses: actions/checkout@v6
99+
- uses: actions/checkout@v7
100100
- name: Checkout dev-tools workflow action source
101-
uses: actions/checkout@v6
101+
uses: actions/checkout@v7
102102
with:
103103
repository: php-fast-forward/dev-tools
104104
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -128,9 +128,9 @@ jobs:
128128
if: github.event_name == 'pull_request_review' && needs.resolve-project.outputs.project_number != ''
129129
runs-on: ubuntu-latest
130130
steps:
131-
- uses: actions/checkout@v6
131+
- uses: actions/checkout@v7
132132
- name: Checkout dev-tools workflow action source
133-
uses: actions/checkout@v6
133+
uses: actions/checkout@v7
134134
with:
135135
repository: php-fast-forward/dev-tools
136136
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}

.github/workflows/auto-resolve-conflicts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ jobs:
5353
GH_TOKEN: ${{ github.token }}
5454

5555
steps:
56-
- uses: actions/checkout@v6
56+
- uses: actions/checkout@v7
5757
with:
5858
fetch-depth: 0
5959

6060
- name: Checkout dev-tools workflow action source
61-
uses: actions/checkout@v6
61+
uses: actions/checkout@v7
6262
with:
6363
repository: php-fast-forward/dev-tools
6464
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && github.sha || 'main' }}

.github/workflows/changelog.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
php-version: ${{ steps.resolve.outputs.php-version }}
7272

7373
steps:
74-
- uses: actions/checkout@v6
74+
- uses: actions/checkout@v7
7575
- name: Checkout dev-tools workflow action source
76-
uses: actions/checkout@v6
76+
uses: actions/checkout@v7
7777
with:
7878
repository: php-fast-forward/dev-tools
7979
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -99,11 +99,11 @@ jobs:
9999
PULL_REQUEST_TITLE: ${{ github.event.pull_request.title }}
100100

101101
steps:
102-
- uses: actions/checkout@v6
102+
- uses: actions/checkout@v7
103103
with:
104104
fetch-depth: 0
105105
- name: Checkout dev-tools workflow action source
106-
uses: actions/checkout@v6
106+
uses: actions/checkout@v7
107107
with:
108108
repository: php-fast-forward/dev-tools
109109
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -186,13 +186,13 @@ jobs:
186186
CHANGELOG_ROOT_VERSION: ${{ format('dev-{0}', github.event.repository.default_branch) }}
187187

188188
steps:
189-
- uses: actions/checkout@v6
189+
- uses: actions/checkout@v7
190190
with:
191191
token: ${{ github.token }}
192192
ref: ${{ github.event.repository.default_branch }}
193193
fetch-depth: 0
194194
- name: Checkout dev-tools workflow action source
195-
uses: actions/checkout@v6
195+
uses: actions/checkout@v7
196196
with:
197197
repository: php-fast-forward/dev-tools
198198
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -249,7 +249,7 @@ jobs:
249249
250250
- name: Checkout release branch
251251
if: ${{ steps.create_pr.outputs.pull-request-number != '' }}
252-
uses: actions/checkout@v6
252+
uses: actions/checkout@v7
253253
with:
254254
token: ${{ github.token }}
255255
ref: ${{ env.RELEASE_BRANCH_PREFIX }}${{ steps.version.outputs.value }}
@@ -258,7 +258,7 @@ jobs:
258258

259259
- name: Checkout dev-tools workflow action source
260260
if: ${{ steps.create_pr.outputs.pull-request-number != '' }}
261-
uses: actions/checkout@v6
261+
uses: actions/checkout@v7
262262
with:
263263
repository: php-fast-forward/dev-tools
264264
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -300,9 +300,9 @@ jobs:
300300
RELEASE_BRANCH: ${{ env.RELEASE_BRANCH_PREFIX }}${{ steps.version.outputs.value }}
301301
run: gh workflow run tests.yml --ref "${RELEASE_BRANCH}" -f publish-required-statuses=true
302302

303-
- uses: actions/checkout@v6
303+
- uses: actions/checkout@v7
304304
- name: Checkout dev-tools workflow action source
305-
uses: actions/checkout@v6
305+
uses: actions/checkout@v7
306306
with:
307307
repository: php-fast-forward/dev-tools
308308
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -341,13 +341,13 @@ jobs:
341341
CHANGELOG_ROOT_VERSION: ${{ format('dev-{0}', github.event.repository.default_branch) }}
342342

343343
steps:
344-
- uses: actions/checkout@v6
344+
- uses: actions/checkout@v7
345345
with:
346346
token: ${{ github.token }}
347347
ref: ${{ github.event.pull_request.base.ref }}
348348
fetch-depth: 0
349349
- name: Checkout dev-tools workflow action source
350-
uses: actions/checkout@v6
350+
uses: actions/checkout@v7
351351
with:
352352
repository: php-fast-forward/dev-tools
353353
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -380,9 +380,9 @@ jobs:
380380
version: ${{ steps.version.outputs.value }}
381381
target: ${{ github.event.pull_request.merge_commit_sha || github.sha }}
382382

383-
- uses: actions/checkout@v6
383+
- uses: actions/checkout@v7
384384
- name: Checkout dev-tools workflow action source
385-
uses: actions/checkout@v6
385+
uses: actions/checkout@v7
386386
with:
387387
repository: php-fast-forward/dev-tools
388388
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}

.github/workflows/label-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@v7
2727
- name: Checkout dev-tools workflow action source
28-
uses: actions/checkout@v6
28+
uses: actions/checkout@v7
2929
with:
3030
repository: php-fast-forward/dev-tools
3131
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}

.github/workflows/reports.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
php-version-source: ${{ steps.resolve.outputs.php-version-source }}
4242

4343
steps:
44-
- uses: actions/checkout@v6
44+
- uses: actions/checkout@v7
4545
- name: Checkout dev-tools workflow action source
46-
uses: actions/checkout@v6
46+
uses: actions/checkout@v7
4747
with:
4848
repository: php-fast-forward/dev-tools
4949
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -73,11 +73,11 @@ jobs:
7373
REPORTS_ROOT_VERSION: ${{ github.event_name == 'pull_request' && format('dev-{0}', github.event.pull_request.head.ref) || 'dev-main' }}
7474

7575
steps:
76-
- uses: actions/checkout@v6
76+
- uses: actions/checkout@v7
7777
with:
7878
fetch-depth: 0
7979
- name: Checkout dev-tools workflow action source
80-
uses: actions/checkout@v6
80+
uses: actions/checkout@v7
8181
with:
8282
repository: php-fast-forward/dev-tools
8383
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -142,7 +142,7 @@ jobs:
142142
143143
- name: Restore previews from gh-pages
144144
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
145-
uses: actions/checkout@v6
145+
uses: actions/checkout@v7
146146
continue-on-error: true
147147
with:
148148
ref: gh-pages
@@ -184,9 +184,9 @@ jobs:
184184
runs-on: ubuntu-latest
185185

186186
steps:
187-
- uses: actions/checkout@v6
187+
- uses: actions/checkout@v7
188188
- name: Checkout dev-tools workflow action source
189-
uses: actions/checkout@v6
189+
uses: actions/checkout@v7
190190
with:
191191
repository: php-fast-forward/dev-tools
192192
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -239,9 +239,9 @@ jobs:
239239
runs-on: ubuntu-latest
240240

241241
steps:
242-
- uses: actions/checkout@v6
242+
- uses: actions/checkout@v7
243243
- name: Checkout dev-tools workflow action source
244-
uses: actions/checkout@v6
244+
uses: actions/checkout@v7
245245
with:
246246
repository: php-fast-forward/dev-tools
247247
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -346,11 +346,11 @@ jobs:
346346
contents: write
347347

348348
steps:
349-
- uses: actions/checkout@v6
349+
- uses: actions/checkout@v7
350350
with:
351351
ref: ${{ github.event.repository.default_branch }}
352352
- name: Checkout dev-tools workflow action source
353-
uses: actions/checkout@v6
353+
uses: actions/checkout@v7
354354
with:
355355
repository: php-fast-forward/dev-tools
356356
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -359,7 +359,7 @@ jobs:
359359
.github/actions
360360
361361
- name: Checkout gh-pages
362-
uses: actions/checkout@v6
362+
uses: actions/checkout@v7
363363
with:
364364
ref: gh-pages
365365
path: gh-pages
@@ -387,9 +387,9 @@ jobs:
387387
unresolved: ${{ steps.cleanup.outputs.unresolved }}
388388

389389
steps:
390-
- uses: actions/checkout@v6
390+
- uses: actions/checkout@v7
391391
- name: Checkout dev-tools workflow action source
392-
uses: actions/checkout@v6
392+
uses: actions/checkout@v7
393393
with:
394394
repository: php-fast-forward/dev-tools
395395
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -398,7 +398,7 @@ jobs:
398398
.github/actions
399399
400400
- name: Checkout gh-pages
401-
uses: actions/checkout@v6
401+
uses: actions/checkout@v7
402402
with:
403403
ref: gh-pages
404404
path: gh-pages
@@ -425,9 +425,9 @@ jobs:
425425
- cleanup_orphaned_previews
426426
runs-on: ubuntu-latest
427427
steps:
428-
- uses: actions/checkout@v6
428+
- uses: actions/checkout@v7
429429
- name: Checkout dev-tools workflow action source
430-
uses: actions/checkout@v6
430+
uses: actions/checkout@v7
431431
with:
432432
repository: php-fast-forward/dev-tools
433433
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}

.github/workflows/retry-transient-failures.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232

3333
steps:
34-
- uses: actions/checkout@v6
34+
- uses: actions/checkout@v7
3535

3636
- id: retry
3737
uses: ./.github/actions/github/retry-transient-failures

.github/workflows/review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v6
29+
- uses: actions/checkout@v7
3030
- name: Checkout dev-tools workflow action source
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@v7
3232
with:
3333
repository: php-fast-forward/dev-tools
3434
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ jobs:
6161
test-matrix: ${{ steps.resolve.outputs.test-matrix }}
6262

6363
steps:
64-
- uses: actions/checkout@v6
64+
- uses: actions/checkout@v7
6565
- name: Checkout dev-tools workflow action source
66-
uses: actions/checkout@v6
66+
uses: actions/checkout@v7
6767
with:
6868
repository: php-fast-forward/dev-tools
6969
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -85,9 +85,9 @@ jobs:
8585
env:
8686
TESTS_ROOT_VERSION: ${{ github.event_name == 'pull_request' && format('dev-{0}', github.event.pull_request.head.ref) || 'dev-main' }}
8787
steps:
88-
- uses: actions/checkout@v6
88+
- uses: actions/checkout@v7
8989
- name: Checkout dev-tools workflow action source
90-
uses: actions/checkout@v6
90+
uses: actions/checkout@v7
9191
with:
9292
repository: php-fast-forward/dev-tools
9393
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -150,9 +150,9 @@ jobs:
150150
env:
151151
TESTS_ROOT_VERSION: ${{ github.event_name == 'pull_request' && format('dev-{0}', github.event.pull_request.head.ref) || 'dev-main' }}
152152
steps:
153-
- uses: actions/checkout@v6
153+
- uses: actions/checkout@v7
154154
- name: Checkout dev-tools workflow action source
155-
uses: actions/checkout@v6
155+
uses: actions/checkout@v7
156156
with:
157157
repository: php-fast-forward/dev-tools
158158
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}
@@ -179,9 +179,9 @@ jobs:
179179
- dependency-health
180180
runs-on: ubuntu-latest
181181
steps:
182-
- uses: actions/checkout@v6
182+
- uses: actions/checkout@v7
183183
- name: Checkout dev-tools workflow action source
184-
uses: actions/checkout@v6
184+
uses: actions/checkout@v7
185185
with:
186186
repository: php-fast-forward/dev-tools
187187
ref: ${{ github.repository == 'php-fast-forward/dev-tools' && (github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || github.sha) || 'main' }}

0 commit comments

Comments
 (0)