From 556270b961da6f35eac4fffc598d92ec6c837cb0 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 8 Dec 2025 14:52:10 +0100 Subject: [PATCH 1/2] ci: Add Support for PHP 8.4 --- .github/workflows/Build-Test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Build-Test.yml b/.github/workflows/Build-Test.yml index 3c8d40e..330e69d 100644 --- a/.github/workflows/Build-Test.yml +++ b/.github/workflows/Build-Test.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: operating-system: [ubuntu-22.04] - php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] include: - operating-system: ubuntu-20.04 php-versions: '7.4' @@ -31,7 +31,7 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu machine - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP Action uses: shivammathur/setup-php@v2 From 94122acf941e53bf8faf72f88b7e2fef16409950 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 8 Dec 2025 14:54:23 +0100 Subject: [PATCH 2/2] Update CI workflow to use Ubuntu 22.04 --- .github/workflows/Build-Test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Build-Test.yml b/.github/workflows/Build-Test.yml index 330e69d..d3b1669 100644 --- a/.github/workflows/Build-Test.yml +++ b/.github/workflows/Build-Test.yml @@ -17,7 +17,7 @@ jobs: operating-system: [ubuntu-22.04] php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] include: - - operating-system: ubuntu-20.04 + - operating-system: ubuntu-22.04 php-versions: '7.4' COMPOSER_FLAGS: '--prefer-stable --prefer-lowest' PHPUNIT_FLAGS: '--coverage-clover build/coverage.xml'