Skip to content

Commit e2c16a7

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 6c97a5e commit e2c16a7

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
@@ -86,7 +86,7 @@ jobs:
8686
pkg-extra-constraints: --with 'behat/gherkin:~4.12.0'
8787
steps:
8888
- name: Check out code
89-
uses: actions/checkout@v5
89+
uses: actions/checkout@v6
9090

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

113113
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }} & Symfony ${{ matrix.symfony-version }}
114-
uses: actions/cache@v4
114+
uses: actions/cache@v5
115115
with:
116116
path: |
117117
${{ steps.composer-cache.outputs.dir }}
@@ -162,7 +162,7 @@ jobs:
162162

163163
- name: Upload coverage reports
164164
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
165-
uses: actions/upload-artifact@v4
165+
uses: actions/upload-artifact@v6
166166
with:
167167
name: coverage-groups-php${{ steps.setup-php.outputs.php-version }}-sf${{ matrix.symfony-version }}
168168
path: build/coverage-groups
@@ -178,7 +178,7 @@ jobs:
178178
PHP_VERSION: ${{ needs.fetch-supported-versions.outputs.php-max }}
179179
SYMFONY_VERSION: ${{ needs.fetch-supported-versions.outputs.symfony-max }}
180180
steps:
181-
- uses: actions/checkout@v5
181+
- uses: actions/checkout@v6
182182

183183
- name: Setup PHP ${{ env.PHP_VERSION }}
184184
id: setup-php
@@ -196,7 +196,7 @@ jobs:
196196
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
197197

198198
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }} & Symfony ${{ env.SYMFONY_VERSION }}
199-
uses: actions/cache@v4
199+
uses: actions/cache@v5
200200
with:
201201
path: |
202202
${{ steps.composer-cache.outputs.dir }}
@@ -258,7 +258,7 @@ jobs:
258258

259259
steps:
260260
- name: Check out code
261-
uses: actions/checkout@v5
261+
uses: actions/checkout@v6
262262

263263
- name: Setup PHP ${{ matrix.php-version }}
264264
id: setup-php
@@ -276,7 +276,7 @@ jobs:
276276
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
277277

278278
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }} & Symfony ${{ matrix.symfony-version }}
279-
uses: actions/cache@v4
279+
uses: actions/cache@v5
280280
with:
281281
path: |
282282
${{ steps.composer-cache.outputs.dir }}

0 commit comments

Comments
 (0)