Skip to content

Commit

Permalink
Ensure dbal/orm versions stay in the requested minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
jsor committed Apr 20, 2023
1 parent d9a2bdd commit 363532c
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 363532c

Please sign in to comment.