Skip to content

Commit 60d84e1

Browse files
committed
PHP 8.4 is supported
1 parent 699298a commit 60d84e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [8.0, 8.1, 8.2, 8.3]
11+
php: [8.0, 8.1, 8.2, 8.3, 8.4]
1212

1313
name: PHP ${{ matrix.php }} tests
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- uses: shivammathur/setup-php@v2
1717
with:
1818
php-version: ${{ matrix.php }}
@@ -21,7 +21,7 @@ jobs:
2121
- run: composer install --no-progress --prefer-dist
2222
- run: vendor/bin/tester tests -s
2323
- if: failure()
24-
uses: actions/upload-artifact@v2
24+
uses: actions/upload-artifact@v3
2525
with:
2626
name: output
2727
path: tests/**/output

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=8.0 <8.4"
14+
"php": ">=8.0 <8.5"
1515
},
1616
"require-dev": {
1717
"nette/tester": "^2.4"

0 commit comments

Comments
 (0)