From 4e4a2cf828071bdd5b0e8b58ecf8c77ee4adcb3a Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 23 Nov 2023 07:59:09 +0100 Subject: [PATCH] GH Actions: update for the release of PHP 8.3 ... which is expected later today. * Builds against PHP 8.3 are no longer allowed to fail. * Add _allowed to fail_ build against PHP 8.4. --- .github/workflows/unit-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index ab5f8f5b5..3a4bde439 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1', '8.2', '8.3' ] + php: [ '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1', '8.2', '8.3', '8.4' ] phpcs_version: [ 'lowest', 'dev-master' ] extensions: [ '' ] coverage: [false] @@ -57,7 +57,7 @@ jobs: name: PHP ${{ matrix.php }} on PHPCS ${{ matrix.phpcs_version }} - continue-on-error: ${{ matrix.php == '8.3' }} + continue-on-error: ${{ matrix.php == '8.4' }} steps: - name: Checkout repository