From 250006603bb397e1c0a3266c89548991f0b01b38 Mon Sep 17 00:00:00 2001 From: Jan Sorgalla Date: Fri, 16 Dec 2022 16:20:13 +0100 Subject: [PATCH] Do not require exact version in CI runs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14a45519..f2c4a730 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,13 +98,13 @@ jobs: - name: Install Doctrine ORM if: matrix.orm != '' - run: composer require --no-interaction --no-update "doctrine/orm:${{ matrix.orm }}" + run: composer require --no-interaction --no-update "doctrine/orm:^${{ matrix.orm }}" - name: Install Doctrine DBAL if: matrix.dbal != '' run: | composer remove --no-interaction --no-update --dev doctrine/orm - composer require --no-interaction --no-update "doctrine/dbal:${{ matrix.dbal }}" + composer require --no-interaction --no-update "doctrine/dbal:^${{ matrix.dbal }}" - name: Install dependencies run: |