Skip to content

Commit dbc2e73

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 4976f21 commit dbc2e73

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 }}
@@ -167,7 +167,7 @@ jobs:
167167

168168
- name: Upload coverage reports
169169
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
170-
uses: actions/upload-artifact@v4
170+
uses: actions/upload-artifact@v6
171171
with:
172172
name: coverage-groups-php${{ steps.setup-php.outputs.php-version }}-sf${{ matrix.symfony-version }}
173173
path: build/coverage-groups
@@ -183,7 +183,7 @@ jobs:
183183
PHP_VERSION: ${{ needs.fetch-supported-versions.outputs.php-max }}
184184
SYMFONY_VERSION: ${{ needs.fetch-supported-versions.outputs.symfony-max }}
185185
steps:
186-
- uses: actions/checkout@v5
186+
- uses: actions/checkout@v6
187187

188188
- name: Setup PHP ${{ env.PHP_VERSION }}
189189
id: setup-php
@@ -201,7 +201,7 @@ jobs:
201201
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
202202

203203
- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }} & Symfony ${{ env.SYMFONY_VERSION }}
204-
uses: actions/cache@v4
204+
uses: actions/cache@v5
205205
with:
206206
path: |
207207
${{ steps.composer-cache.outputs.dir }}
@@ -268,7 +268,7 @@ jobs:
268268

269269
steps:
270270
- name: Check out code
271-
uses: actions/checkout@v5
271+
uses: actions/checkout@v6
272272

273273
- name: Setup PHP ${{ matrix.php-version }}
274274
id: setup-php
@@ -286,7 +286,7 @@ jobs:
286286
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
287287

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

0 commit comments

Comments
 (0)