Skip to content

Commit ce7b72f

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

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/build-test-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fi
3333
3434
- name: Checkout the app
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
if: ${{ steps.check.outputs.skip == 'false' }}
3737
- name: Make sure the appinfo is built
3838
shell: bash

.github/workflows/deploy-appstore.yml

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

2121
steps:
2222
- name: Checkout the project
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
path: cookbook
2626
ref: ${{ github.ref }}

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-24.04
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
- name: Setup Pages
3737
uses: actions/configure-pages@v5
3838

.github/workflows/pull-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout the app
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
filter: "blob:none"
1818
fetch-depth: 0
@@ -167,7 +167,7 @@ jobs:
167167

168168
steps:
169169
- name: Checkout of the app
170-
uses: actions/checkout@v5
170+
uses: actions/checkout@v6
171171
with:
172172
fetch-depth: 1
173173

@@ -211,7 +211,7 @@ jobs:
211211

212212
steps:
213213
- name: Checkout of the app
214-
uses: actions/checkout@v5
214+
uses: actions/checkout@v6
215215
with:
216216
fetch-depth: 1
217217
- name: Get the date

.github/workflows/slack-commands.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
reactions: "+1"
6161
- name: Checkout of the app data
6262
if: steps.config.outputs.startBackport == 'true'
63-
uses: actions/checkout@v5
63+
uses: actions/checkout@v6
6464
with:
6565
fetch-depth: 0
6666
token: ${{ secrets.COOKBOOK_BOT_TOKEN }}

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout the project
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Setup node and NPM
2121
uses: actions/setup-node@v6
2222
with:
@@ -131,7 +131,7 @@ jobs:
131131

132132
steps:
133133
- name: Checkout the app
134-
uses: actions/checkout@v5
134+
uses: actions/checkout@v6
135135
with:
136136
fetch-depth: 2
137137

@@ -271,7 +271,7 @@ jobs:
271271

272272
steps:
273273
- name: Checkout the app
274-
uses: actions/checkout@v5
274+
uses: actions/checkout@v6
275275
with:
276276
fetch-depth: 2
277277

@@ -390,7 +390,7 @@ jobs:
390390
path: artifacts
391391
- name: Checkout of code base
392392
if: ${{ github.event_name == 'push' }}
393-
uses: actions/checkout@v5
393+
uses: actions/checkout@v6
394394
with:
395395
path: code
396396
fetch-depth: 2
@@ -468,7 +468,7 @@ jobs:
468468

469469
steps:
470470
- name: Checkout the app
471-
uses: actions/checkout@v5
471+
uses: actions/checkout@v6
472472
- name: Setup node and NPM
473473
uses: actions/setup-node@v6
474474
with:
@@ -542,7 +542,7 @@ jobs:
542542
shell: bash
543543
steps:
544544
- name: Checkout of the app
545-
uses: actions/checkout@v5
545+
uses: actions/checkout@v6
546546
- name: build docker container image
547547
run: docker build -t php-lint-tester .github/actions/php-linter
548548
- name: Check the code base
@@ -558,7 +558,7 @@ jobs:
558558

559559
steps:
560560
- name: Checkout of the app
561-
uses: actions/checkout@v5
561+
uses: actions/checkout@v6
562562
- name: Get the date
563563
id: date
564564
run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)