Skip to content

Commit e690b79

Browse files
committed
Fix
1 parent 309f60a commit e690b79

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ jobs:
6666
php-version: '${{ needs.fetch-supported-versions.outputs.php-max }}'
6767
symfony-version: '6.4'
6868
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
69-
# Fix - symfony/yaml - Avoid issue with Sf YAML 6.4+ and Framework bundle
70-
pkg-extra-constraints: behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '6.4' ) && 'symfony/yaml:~6.4.0' || '' }}
69+
pkg-extra-constraints: behat/gherkin:~4.12.0
7170
- job-name: Bare minimum # => Lowest versions allowed by composer config
7271
php-version: '${{ needs.fetch-supported-versions.outputs.php-min }}'
7372
symfony-version: '${{ needs.fetch-supported-versions.outputs.symfony-min }}'
@@ -243,14 +242,14 @@ jobs:
243242
symfony-version: ${{ needs.fetch-supported-versions.outputs.symfony-next }}
244243
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
245244
# Fix - symfony/framework-bundle - Framework bundle <7.0 require php 8.1 minimum !
246-
pkg-extra-constraints: behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0' && needs.fetch-supported-versions.outputs.php-max == '8.4' ) && 'symfony/framework-bundle:~7.0.0@dev' || '' }}
245+
pkg-extra-constraints: behat/gherkin:~4.12.0
247246
- job-name: Symfony - With lowest supported PHP version
248-
# Fix - Sf 7.0 require php 8.1 minimum, most of deps require 8.2 !
249-
php-version: ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
247+
# Fix - symfony/validator 7.1 require php 8.2 minimum !
248+
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 }}
250249
symfony-version: ${{ needs.fetch-supported-versions.outputs.symfony-next }}
251250
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
252251
# Fix - symfony/framework-bundle - Framework bundle <7.0 require php 8.1 minimum !
253-
pkg-extra-constraints: behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && 'symfony/framework-bundle:~7.0.0@dev' || '' }}
252+
pkg-extra-constraints: behat/gherkin:~4.12.0
254253

255254
steps:
256255
- name: Check out code

0 commit comments

Comments
 (0)