Skip to content

Commit

Permalink
Do not require exact version in CI runs
Browse files Browse the repository at this point in the history
  • Loading branch information
jsor committed Dec 16, 2022
1 parent f20e16f commit 2500066
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 2500066

Please sign in to comment.