Skip to content

Commit a7cc1bc

Browse files
committed
feat: add support for PHP 8.4
1 parent fcd3bdf commit a7cc1bc

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ The PHP version to use (corresponds to the Docker image). Allowed options and th
1616
| 8.1 | hussainweb/drupalqa:php8.1 |
1717
| 8.2 | hussainweb/drupalqa:php8.2 |
1818
| 8.3 | hussainweb/drupalqa:php8.3 |
19+
| 8.4 | hussainweb/drupalqa:php8.4 |
1920
| latest | hussainweb/drupalqa:latest |
2021

2122
Note: The actual Docker image used also depends on the `registry` option. If that option is set to `'ghcr'` (default value), then the Docker image is prefixed with `ghcr.io/`. For example, `ghcr.io/hussainweb/drupalqa:php8.2`.

src/main.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,17 @@ const availableChecks: {
2424

2525
async function run(): Promise<void> {
2626
const phpVersion = core.getInput('php-version')
27-
if (
28-
!['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', 'latest'].includes(phpVersion)
29-
) {
27+
const validVersions = [
28+
'7.3',
29+
'7.4',
30+
'8.0',
31+
'8.1',
32+
'8.2',
33+
'8.3',
34+
'8.4',
35+
'latest'
36+
]
37+
if (!validVersions.includes(phpVersion)) {
3038
throw new Error('Invalid PHP version.')
3139
}
3240

0 commit comments

Comments
 (0)