From 535b727ccf264d8b61b65f5603ce23efc3d488ab Mon Sep 17 00:00:00 2001 From: jrfnl Date: Wed, 27 Mar 2024 18:25:55 +0100 Subject: [PATCH] GH Actions/release: validate binary against PHP 8.4 Follow up on 150, which added PHP 8.4 to the test workflow, but didn't update the release workflow. Fixed now. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c7948d..6856440 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,7 @@ jobs: verify: name: Validate binary on PHP ${{ matrix.php }} runs-on: ubuntu-latest - continue-on-error: ${{ matrix.php == '8.3' }} + continue-on-error: ${{ matrix.php == '8.4' }} needs: - bundle @@ -86,6 +86,7 @@ jobs: - '8.1' - '8.2' - '8.3' + - '8.4' steps: - name: Checkout code