Skip to content

Commit

Permalink
pin composser to LTS version
Browse files Browse the repository at this point in the history
  • Loading branch information
Cube707 committed Jan 4, 2024
1 parent 6300548 commit 160ca7c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ jobs:
DB: ${{steps.database-type.outputs.db}}
PHP_VERSION: ${{ matrix.php }}
NOTESTS: '0'
run: .github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
run: |
composer self-update --2.2
.github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
working-directory: ./phpBB3

- name: Setup database
Expand Down Expand Up @@ -331,7 +333,9 @@ jobs:
DB: ${{steps.database-type.outputs.db}}
PHP_VERSION: ${{ matrix.php }}
NOTESTS: '0'
run: .github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
run: |
composer self-update --2.2
.github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
working-directory: ./phpBB3

- name: Setup database
Expand Down Expand Up @@ -431,7 +435,9 @@ jobs:
DB: ${{steps.database-type.outputs.db}}
PHP_VERSION: ${{ matrix.php }}
NOTESTS: '0'
run: .github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
run: |
composer self-update --2.2
.github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
working-directory: ./phpBB3

- name: Setup database
Expand Down

0 comments on commit 160ca7c

Please sign in to comment.