Skip to content

Commit f7a8846

Browse files
[dependabot][ghaction] - (deps): Bump the all-actions group across 1 directory with 3 updates
Bumps the all-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `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) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e4d823c commit f7a8846

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/reusable-CI-workflow.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
php-version: '${{ needs.fetch-supported-versions.outputs.php-min }}'
5555
steps:
5656
- name: Check out code
57-
uses: actions/checkout@v5
57+
uses: actions/checkout@v6
5858

5959
# Enable coverage only for specific version(s) !
6060
# Usually highest version(s), plus additional ones in case of code used only with specific versions
@@ -79,7 +79,7 @@ jobs:
7979
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
8080

8181
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }}
82-
uses: actions/cache@v4
82+
uses: actions/cache@v5
8383
with:
8484
path: |
8585
${{ steps.composer-cache.outputs.dir }}
@@ -120,7 +120,7 @@ jobs:
120120

121121
- name: Upload coverage reports
122122
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v6
124124
with:
125125
name: coverage-groups-php${{ steps.setup-php.outputs.php-version }}
126126
path: build/coverage-groups
@@ -135,7 +135,7 @@ jobs:
135135
env:
136136
PHP_VERSION: ${{ needs.fetch-supported-versions.outputs.php-max }}
137137
steps:
138-
- uses: actions/checkout@v5
138+
- uses: actions/checkout@v6
139139

140140
- name: Setup PHP ${{ env.PHP_VERSION }}
141141
id: setup-php
@@ -153,7 +153,7 @@ jobs:
153153
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
154154

155155
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }}
156-
uses: actions/cache@v4
156+
uses: actions/cache@v5
157157
with:
158158
path: |
159159
${{ steps.composer-cache.outputs.dir }}
@@ -182,7 +182,7 @@ jobs:
182182
COMPOSER_IGNORE_PLATFORM_REQ: 'php+'
183183
steps:
184184
- name: Check out code
185-
uses: actions/checkout@v5
185+
uses: actions/checkout@v6
186186

187187
- name: Setup PHP ${{ needs.fetch-supported-versions.outputs.php-next }}
188188
id: setup-php
@@ -200,7 +200,7 @@ jobs:
200200
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
201201

202202
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }}
203-
uses: actions/cache@v4
203+
uses: actions/cache@v5
204204
with:
205205
path: |
206206
${{ steps.composer-cache.outputs.dir }}

0 commit comments

Comments
 (0)