File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,11 @@ jobs:
15
15
strategy :
16
16
matrix :
17
17
operating-system : [ubuntu-latest]
18
- php-version : ['8.0', '8.1', '8.2', '8.3']
18
+ # See https://www.php.net/supported-versions.php
19
+ php-version : ['8.1', '8.2', '8.3', '8.4']
19
20
name : PHP ${{ matrix.php-version }} Test on ${{ matrix.operating-system }}
20
21
steps :
21
- - uses : actions/checkout@v3
22
+ - uses : actions/checkout@v4
22
23
23
24
- name : Setup PHP
24
25
uses : shivammathur/setup-php@v2
41
42
run : composer test-ci
42
43
43
44
- name : Upload coverage to Codecov
44
- if : matrix.php-version == '8.3 ' && matrix.operating-system == 'ubuntu-latest'
45
- uses : codecov/codecov-action@v3
45
+ if : matrix.php-version == '8.4 ' && matrix.operating-system == 'ubuntu-latest'
46
+ uses : codecov/codecov-action@v5
46
47
with :
47
48
token : ${{ secrets.CODECOV_TOKEN }}
48
49
file : ./report/coverage.xml
You can’t perform that action at this time.
0 commit comments