From cefb19a8209bf9a5298cfb2de45294f38d95d5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigui=20Kess=C3=A9=20Emmanuel?= Date: Tue, 6 Feb 2024 20:24:22 +0100 Subject: [PATCH] :pencil2: Fix preferred dependencies --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6794eff..7d1cfc0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [ubuntu-latest] php: [8.1, 8.2, 8.3] - dependencies: [lowest, highest] + dependencies: [lower, stable] experimental: [false] name: 👷 CI PHP-${{ matrix.php }} ${{ matrix.dependencies }} on ${{ matrix.os }} @@ -44,8 +44,8 @@ jobs: - name: 🍱 Install Composer dependencies run: | - composer install -q --no-ansi --no-cache --no-interaction --no-scripts --no-progress --prefer-dist - composer update --${{ matrix.dependencies }} --no-interaction --prefer-dist + composer install -q --no-ansi --no-cache --no-interaction --no-scripts --no-progress --prefer-${{ matrix.dependencies }} + composer update --prefer-${{ matrix.dependencies }} --no-interaction - name: ✅ Check code lint run: composer check