From 5e48bd69cc46a46b90633e3722465d4ac6fd3e45 Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Wed, 20 Nov 2024 11:24:52 +0100 Subject: [PATCH 1/2] Run CI tests with PHP8.4 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fefc34dc1d6..a5a17a5e922 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - php: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] + php: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"] name: Linux / PHP ${{ matrix.php }} From 9d015febf9754ddf576cb052918ca573383b4a93 Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Fri, 22 Nov 2024 13:29:50 +0100 Subject: [PATCH 2/2] Use PHP 8.4 for Windows- and Browser-tests and linting, too --- .github/workflows/browser_tests.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/browser_tests.yml b/.github/workflows/browser_tests.yml index 6bd339610ab..7b9dc8daadb 100644 --- a/.github/workflows/browser_tests.yml +++ b/.github/workflows/browser_tests.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - php: ["8.1", "8.3"] + php: ["8.1", "8.3", "8.4"] name: Linux / PHP ${{ matrix.php }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 955896a7977..0169c75d0e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: "8.3" + php-version: "8.4" extensions: mbstring tools: composer:v2 coverage: none @@ -62,7 +62,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: "8.3" + php-version: "8.4" extensions: mbstring tools: composer:v2 coverage: none diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a5a17a5e922..8b4fbb8531c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,7 +58,7 @@ jobs: strategy: fail-fast: false matrix: - php: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] + php: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"] name: Windows / PHP ${{ matrix.php }}