From 1f111987bf98437deb73865c638f9200b1f9d57b Mon Sep 17 00:00:00 2001 From: Ben Peachey Date: Sat, 3 Feb 2024 16:39:22 +0100 Subject: [PATCH 1/2] Add PHP8.2 and 8.3 to PHP version sniff GitHub Action. --- .github/workflows/php-version-sniff.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php-version-sniff.yml b/.github/workflows/php-version-sniff.yml index fb69fde..f522f53 100644 --- a/.github/workflows/php-version-sniff.yml +++ b/.github/workflows/php-version-sniff.yml @@ -17,7 +17,7 @@ jobs: php-codesniffer: strategy: matrix: - php: [ '8.0', '8.1' ] + php: [ '8.0', '8.1', '8.2', '8.3', ] runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 From 6d40f2162770b3d6ac5a84e85456689f554bc1d6 Mon Sep 17 00:00:00 2001 From: Ben Peachey Date: Sat, 3 Feb 2024 16:41:44 +0100 Subject: [PATCH 2/2] Add PHP8.2 and 8.3 to PHPUnit GitHub Action. --- .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 0b450f1..40c9513 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - php: ['8.0', '8.1'] + php: [ '8.0', '8.1', '8.2', '8.3', ] steps: - uses: actions/checkout@v3