Skip to content

Commit 05b18b4

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 0f8cbf2 commit 05b18b4

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
@@ -87,7 +87,7 @@ jobs:
8787
pkg-extra-constraints: --with 'behat/gherkin:~4.12.0' ${{ ( needs.fetch-supported-versions.outputs.symfony-min == '5.4' && needs.fetch-supported-versions.outputs.php-max == '8.4' ) && '--with "symfony/yaml:~6.4.0"' || '' }}
8888
steps:
8989
- name: Check out code
90-
uses: actions/checkout@v5
90+
uses: actions/checkout@v6
9191

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

114114
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }} & Symfony ${{ matrix.symfony-version }}
115-
uses: actions/cache@v4
115+
uses: actions/cache@v5
116116
with:
117117
path: |
118118
${{ steps.composer-cache.outputs.dir }}
@@ -166,7 +166,7 @@ jobs:
166166

167167
- name: Upload coverage reports
168168
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
169-
uses: actions/upload-artifact@v4
169+
uses: actions/upload-artifact@v6
170170
with:
171171
name: coverage-groups-php${{ steps.setup-php.outputs.php-version }}-sf${{ matrix.symfony-version }}
172172
path: build/coverage-groups
@@ -182,7 +182,7 @@ jobs:
182182
PHP_VERSION: ${{ needs.fetch-supported-versions.outputs.php-max }}
183183
SYMFONY_VERSION: ${{ needs.fetch-supported-versions.outputs.symfony-max }}
184184
steps:
185-
- uses: actions/checkout@v5
185+
- uses: actions/checkout@v6
186186

187187
- name: Setup PHP ${{ env.PHP_VERSION }}
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 }} & Symfony ${{ env.SYMFONY_VERSION }}
203-
uses: actions/cache@v4
203+
uses: actions/cache@v5
204204
with:
205205
path: |
206206
${{ steps.composer-cache.outputs.dir }}
@@ -266,7 +266,7 @@ jobs:
266266

267267
steps:
268268
- name: Check out code
269-
uses: actions/checkout@v5
269+
uses: actions/checkout@v6
270270

271271
- name: Setup PHP ${{ matrix.php-version }}
272272
id: setup-php
@@ -284,7 +284,7 @@ jobs:
284284
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
285285

286286
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }} & Symfony ${{ matrix.symfony-version }}
287-
uses: actions/cache@v4
287+
uses: actions/cache@v5
288288
with:
289289
path: |
290290
${{ steps.composer-cache.outputs.dir }}

0 commit comments

Comments
 (0)