Skip to content

Commit cbd6265

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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 3a28242 commit cbd6265

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build-and-push-docker-image.yml

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

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646

4747
- name: Fetch built PHAR from artifacts
4848
uses: actions/download-artifact@v6

.github/workflows/build-phar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
coverage: none
3838
tools: composer, box
3939
php-version: "${{ matrix.php-version }}"
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
with:
4242
fetch-depth: 0
4343
# Fixes `git describe` picking the wrong tag - see https://github.com/php/pie/issues/307

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
extensions: intl, sodium, zip
3030
env:
3131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- uses: ramsey/composer-install@v3
3434
- name: GH token (non-Windows)
3535
if: matrix.operating-system != 'windows-latest'
@@ -118,7 +118,7 @@ jobs:
118118
make -j$(nproc)
119119
sudo make install
120120
cd $GITHUB_WORKSPACE
121-
- uses: actions/checkout@v5
121+
- uses: actions/checkout@v6
122122
- name: Composer Install
123123
run: composer install --ignore-platform-reqs
124124
- name: Run bundled PHP install test
@@ -138,7 +138,7 @@ jobs:
138138
- '8.3'
139139
- '8.4'
140140
steps:
141-
- uses: actions/checkout@v5
141+
- uses: actions/checkout@v6
142142
with:
143143
fetch-depth: 0
144144
# Fixes `git describe` picking the wrong tag - see https://github.com/php/pie/issues/307
@@ -165,7 +165,7 @@ jobs:
165165
extensions: intl, sodium, zip
166166
env:
167167
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
168-
- uses: actions/checkout@v5
168+
- uses: actions/checkout@v6
169169
- uses: ramsey/composer-install@v3
170170
- name: Run PHPCS
171171
run: vendor/bin/phpcs
@@ -180,7 +180,7 @@ jobs:
180180
extensions: intl, sodium, zip
181181
env:
182182
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
183-
- uses: actions/checkout@v5
183+
- uses: actions/checkout@v6
184184
- uses: ramsey/composer-install@v3
185185
- name: Validate the composer configuration
186186
run: composer validate --strict

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- build-phar
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
- name: Build documentation
3737
run: .github/docs/build-docs.sh
3838
- name: Fetch built PHAR from artifacts

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# contents:write is required to create the draft release
2626
contents: write
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929
with:
3030
fetch-tags: 'true'
3131
ref: ${{ github.ref }}
@@ -47,7 +47,7 @@ jobs:
4747
# contents:write is required to upload the binaries to the release.
4848
contents: write
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151
- name: Fetch built PHAR from artifacts
5252
uses: actions/download-artifact@v6
5353
with:

0 commit comments

Comments
 (0)