File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,12 @@ jobs:
7272 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
7373 symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-min }}'
7474 - job-name : Bare minimum - Special case - Symfony 6.4
75- php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
75+ # Fix - Sf 6.4 require php 8.1 minimum !
76+ php-version : ${{ ( needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.1' || needs.fetch-supported-versions.outputs.php-min }}
7677 symfony-version : ' 6.4'
7778 - job-name : Late migration - PHP # => Highest symfony version with lowest php version allowed by composer config
78- # Fix - Sf 6.4 require php 8.1 minimum !
79- php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '7.0' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.1 ' || needs.fetch-supported-versions.outputs.php-min }}
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 }}
8081 symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
8182 - job-name : Late migration - Symfony # => Lowest symfony version with highest php version allowed by composer config
8283 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
You can’t perform that action at this time.
0 commit comments