Skip to content

Commit 4d10a34

Browse files
committed
Fix behat unstable version
1 parent cbb07e7 commit 4d10a34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
name: Nightly - PHP ${{ matrix.php-version }} & Symfony ${{ matrix.symfony-version }}
165165
runs-on: ubuntu-latest
166166
env:
167-
COMPOSER_OPTIONS: '--optimize-autoloader --ignore-platform-req=php+'
167+
COMPOSER_OPTIONS: '--optimize-autoloader --prefer-dist --ignore-platform-req=php+'
168168
continue-on-error: true
169169
needs: [ static-checks, tests ]
170170
strategy:
@@ -208,14 +208,14 @@ jobs:
208208
- name: Build
209209
run: |
210210
composer config minimum-stability dev \
211-
&& composer require -W ${{ env.COMPOSER_OPTIONS }} \
211+
&& composer require -W ${{ env.COMPOSER_OPTIONS }} --prefer-stable \
212212
symfony/http-foundation:^${{ matrix.symfony-version }} \
213213
symfony/http-kernel:^${{ matrix.symfony-version }} \
214214
symfony/config:^${{ matrix.symfony-version }} \
215215
symfony/dependency-injection:^${{ matrix.symfony-version }} \
216216
symfony/event-dispatcher:^${{ matrix.symfony-version }} \
217217
symfony/routing:^${{ matrix.symfony-version }} \
218-
&& composer update ${{ env.COMPOSER_OPTIONS }} \
218+
&& composer update ${{ env.COMPOSER_OPTIONS }} --prefer-stable \
219219
&& make build
220220
221221
- name: Test

0 commit comments

Comments
 (0)