From 72b26069d9fbd13d860153f38d12f38f445aae70 Mon Sep 17 00:00:00 2001 From: Andreas Fernandez Date: Fri, 19 Feb 2021 10:33:26 +0100 Subject: [PATCH] [BUGFIX] Set older PHP version not supported in ubuntu-latest image --- .github/workflows/ci.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d600642..d853081 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |