From 7771f99edb1184cb3fce7bf8e987feccb326fb32 Mon Sep 17 00:00:00 2001 From: Sam Wilson Date: Thu, 28 Nov 2024 12:28:50 +0800 Subject: [PATCH] Add PHP 8.4 to CI --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a13524..63c46c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,12 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ] + php: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] include: - os: macos-latest - php: '8.3' + php: '8.4' - os: windows-latest - php: '8.3' + php: '8.4' runs-on: ${{matrix.os}}