Skip to content

Commit

Permalink
[BUGFIX] Set older PHP version not supported in ubuntu-latest image
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskienast committed Feb 19, 2021
1 parent 537bb6a commit 72b2606
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,23 @@ jobs:
matrix:
typo3: [^10.4, dev-master]
php: ['7.2', '7.3', '7.4']
include:
- typo3: ^10.4
php: '7.4'
- typo3: ^10.4
php: '7.2'
- typo3: ^10.4
php: '7.3'
- typo3: dev-master
php: '7.4'

steps:
- uses: actions/checkout@v2

- name: Set up PHP Version
run: |
sudo update-alternatives --set php /usr/bin/php${{ matrix.php }}
php -v
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}

- name: Update Composer
run: |
Expand Down

0 comments on commit 72b2606

Please sign in to comment.