Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/reusable-CI-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
pkg-extra-constraints: --with 'behat/gherkin:~4.12.0'
steps:
- name: Check out code
uses: actions/checkout@v5
uses: actions/checkout@v6

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

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

- name: Upload coverage reports
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-groups-php${{ steps.setup-php.outputs.php-version }}-sf${{ matrix.symfony-version }}
path: build/coverage-groups
Expand All @@ -178,7 +178,7 @@ jobs:
PHP_VERSION: ${{ needs.fetch-supported-versions.outputs.php-max }}
SYMFONY_VERSION: ${{ needs.fetch-supported-versions.outputs.symfony-max }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

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

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

steps:
- name: Check out code
uses: actions/checkout@v5
uses: actions/checkout@v6

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

- name: Setup cache for PHP ${{ steps.setup-php.outputs.php-version }} & Symfony ${{ matrix.symfony-version }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
${{ steps.composer-cache.outputs.dir }}
Expand Down