File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 35
35
phar : true
36
36
37
37
steps :
38
- - uses : actions/checkout@v3
38
+ - uses : actions/checkout@v4
39
39
40
40
- uses : shivammathur/setup-php@v2
41
41
with :
53
53
run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
54
54
55
55
- name : Cache dependencies
56
- uses : actions/cache@v3
56
+ uses : actions/cache@v4
57
57
with :
58
58
path : ${{ steps.composer-cache.outputs.dir }}
59
59
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
75
75
run : vendor/bin/phpunit --configuration phpunit.xml --bootstrap build/autoload.php
76
76
77
77
- name : Download base coverage
78
- uses : dawidd6/action-download-artifact@v2
78
+ uses : dawidd6/action-download-artifact@v3
79
79
if : github.event_name == 'pull_request' && matrix.phar == false
80
80
continue-on-error : true
81
81
with :
@@ -86,22 +86,22 @@ jobs:
86
86
workflow : .github/workflows/ci.yml
87
87
- name : Report coverage
88
88
if : github.event_name == 'pull_request' && matrix.phar == false
89
- uses : lucassabreu/comment-coverage-clover@v0.9.1
89
+ uses : lucassabreu/comment-coverage-clover@v0.12.0
90
90
with :
91
91
base-file : ./coverage-base/clover.xml
92
92
file : ./clover.xml
93
93
with-chart : false
94
94
signature : PHP ${{ matrix.php }}
95
95
96
96
- name : Upload coverage
97
- uses : actions/upload-artifact@v3
97
+ uses : actions/upload-artifact@v4
98
98
if : matrix.phar == false
99
99
with :
100
100
name : coverage-${{ matrix.php }}
101
101
path : ./clover.xml
102
102
103
103
- name : Upload phar
104
- uses : actions/upload-artifact@v3
104
+ uses : actions/upload-artifact@v4
105
105
if : matrix.phar
106
106
with :
107
107
name : phar
You can’t perform that action at this time.
0 commit comments