Skip to content

Commit d86c9bf

Browse files
committed
Increase CI supported versions
1 parent 01ea600 commit d86c9bf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ jobs:
7676
php-version: ${{ ( needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.1' || needs.fetch-supported-versions.outputs.php-min }}
7777
symfony-version: '6.4'
7878
- job-name: Late PHP migration # => Highest symfony version with lowest php version allowed by composer config
79-
# Fix - Sf 7.0 require php 8.1 minimum, most of deps require 8.2 !
80-
php-version: ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '7.0' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
79+
# Fix - Sf 7.3 require php 8.2 !
80+
php-version: ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '7.3' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
8181
symfony-version: '${{ needs.fetch-supported-versions.outputs.symfony-max }}'
8282
- job-name: Late Symfony migration # => Lowest symfony version with highest php version allowed by composer config
8383
php-version: '${{ needs.fetch-supported-versions.outputs.php-max }}'
@@ -260,8 +260,8 @@ jobs:
260260
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
261261
pkg-extra-constraints: behat/gherkin:~4.12.0
262262
- job-name: Symfony with lowest supported PHP version
263-
# Fix - Sf 7.1 require php 8.2 minimum !
264-
php-version: ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.1' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
263+
# Fix - Sf 7.4 require php 8.2 minimum !
264+
php-version: ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.4' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
265265
symfony-version: ${{ needs.fetch-supported-versions.outputs.symfony-next }}
266266
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
267267
pkg-extra-constraints: behat/gherkin:~4.12.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"php": {"min": "8.0", "max": "8.4", "next": "8.5"},
3-
"symfony": {"min": "5.4", "max": "7.0", "next": "7.1"}
3+
"symfony": {"min": "5.4", "max": "7.3", "next": "7.4"}
44
}

0 commit comments

Comments
 (0)