Skip to content

Commit 8acc3cf

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.
1 parent 3d07451 commit 8acc3cf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
verify:
6363
name: Validate binary on PHP ${{ matrix.php }}
6464
runs-on: ubuntu-latest
65-
continue-on-error: ${{ matrix.php == '8.2' }}
65+
continue-on-error: ${{ matrix.php == '8.3' }}
6666
needs:
6767
- bundle
6868

@@ -81,6 +81,7 @@ jobs:
8181
- '8.0'
8282
- '8.1'
8383
- '8.2'
84+
- '8.3'
8485

8586
steps:
8687
- name: Checkout code

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
test:
8686
name: Run tests on PHP ${{ matrix.php }}
8787
runs-on: ubuntu-latest
88-
continue-on-error: ${{ matrix.php == '8.2' }}
88+
continue-on-error: ${{ matrix.php == '8.3' }}
8989
needs:
9090
- bundle
9191

@@ -104,6 +104,7 @@ jobs:
104104
- '8.0'
105105
- '8.1'
106106
- '8.2'
107+
- '8.3'
107108

108109
steps:
109110
- name: Checkout code

0 commit comments

Comments
 (0)