Skip to content

Commit 309f60a

Browse files
committed
Fix
1 parent c110e79 commit 309f60a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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 }}'

0 commit comments

Comments
 (0)