File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 36
36
- 7.*
37
37
steps :
38
38
- name : Checkout code
39
- uses : actions/checkout@v3
39
+ uses : actions/checkout@v4
40
40
41
41
- name : Install PHP with PCOV
42
42
uses : shivammathur/setup-php@v2
71
71
run : php vendor/bin/phpunit
72
72
73
73
- name : Upload coverage file
74
- uses : actions/upload-artifact@v3
74
+ uses : actions/upload-artifact@v4
75
75
with :
76
76
name : phpunit-${{ matrix.php }}-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}.coverage
77
77
path : build/coverage.xml
@@ -90,16 +90,16 @@ jobs:
90
90
91
91
steps :
92
92
- name : Checkout code
93
- uses : actions/checkout@v3
93
+ uses : actions/checkout@v4
94
94
95
95
- name : Download coverage files
96
- uses : actions/download-artifact@v3
96
+ uses : actions/download-artifact@v4
97
97
with :
98
98
path : reports
99
99
100
100
- name : Upload to Codecov
101
101
env :
102
102
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
103
- uses : codecov/codecov-action@v2
103
+ uses : codecov/codecov-action@v4
104
104
with :
105
105
directory : reports
You can’t perform that action at this time.
0 commit comments