From 539292fea03d718cc86e7137ad72ea35b694f2bf Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 23 Nov 2023 03:57:13 +0100 Subject: [PATCH] GH Actions: update for the release of PHP 8.3 ... which is expected later today. --- .github/workflows/test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a35bcb5..53ce825 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -93,7 +93,7 @@ jobs: test: name: Run tests on PHP ${{ matrix.php }} runs-on: ubuntu-latest - continue-on-error: ${{ matrix.php == '8.3' }} + continue-on-error: ${{ matrix.php == '8.4' }} needs: - bundle @@ -113,6 +113,7 @@ jobs: - '8.1' - '8.2' - '8.3' + - '8.4' steps: - name: Checkout code @@ -131,14 +132,14 @@ jobs: run: composer remove --dev php-parallel-lint/php-code-style --no-update --no-interaction - name: Install Composer dependencies - if: ${{ matrix.php != '8.3' }} + if: ${{ matrix.php != '8.4' }} uses: ramsey/composer-install@v2 with: # Bust the cache at least once a month - output format: YYYY-MM. custom-cache-suffix: $(date -u "+%Y-%m") - - name: "Install Composer dependencies (PHP 8.3, ignore PHP reqs)" - if: ${{ matrix.php == '8.3' }} + - name: "Install Composer dependencies (PHP 8.4, ignore PHP reqs)" + if: ${{ matrix.php == '8.4' }} uses: ramsey/composer-install@v2 with: composer-options: --ignore-platform-req=php