Skip to content

Commit 540e642

Browse files
jrfnlgrogy
authored andcommitted
GH Actions: update PHP versions in workflows
PHP 8.2 has been released today 🎉 and the `setup-php` action has announced support for PHP 8.3, so adding PHP 8.3 to the matrix and no longer allowing PHP 8.2 to fail the build. Builds against PHP 8.3 are still allowed to fail for now. Includes minor tweak setting PHP to `latest` for tasks where the PHP version isn't that relevant.
1 parent bfb62f8 commit 540e642

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/cs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install PHP
2525
uses: shivammathur/setup-php@v2
2626
with:
27-
php-version: '7.4'
27+
php-version: 'latest'
2828
coverage: none
2929
tools: cs2pr
3030

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ jobs:
3030
# PHP 7.4 is tested in coverage section
3131
- '8.0'
3232
- '8.1'
33+
- '8.2'
3334
experimental: [false]
3435

3536
include:
36-
- php: '8.2'
37+
- php: '8.3'
3738
experimental: true
3839

3940
name: "Test on PHP ${{ matrix.php }}"

0 commit comments

Comments
 (0)