File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 32
32
33
33
steps :
34
34
- name : " Checkout"
35
- uses : actions/checkout@v3
35
+ uses : actions/checkout@v4
36
36
37
37
- name : " Install PHP"
38
38
uses : shivammathur/setup-php@v2
56
56
57
57
steps :
58
58
- name : " Checkout sources"
59
- uses : actions/checkout@v3
59
+ uses : actions/checkout@v4
60
60
61
61
- name : " Install PHP"
62
62
uses : shivammathur/setup-php@v2
95
95
96
96
steps :
97
97
- name : " Checkout"
98
- uses : actions/checkout@v3
98
+ uses : actions/checkout@v4
99
99
100
100
- name : " Fetch cacert.pem from curl.haxx.se"
101
101
run : curl -o tests/cacert.pem https://curl.haxx.se/ca/cacert.pem
@@ -114,7 +114,10 @@ jobs:
114
114
run : php vendor/phpunit/phpunit/phpunit --configuration=phpunit.xml.dist
115
115
116
116
- name : " Send code coverage report to Codecov.io"
117
- uses : codecov/codecov-action@v3
117
+ uses : codecov/codecov-action@v4
118
+ with :
119
+ token : ${{ secrets.CODECOV_TOKEN }}
120
+ files : .build/coverage/clover.xml
118
121
119
122
- name : " Send code coverage report to Codacy"
120
123
uses : codacy/codacy-coverage-reporter-action@v1
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.2 /phpunit.xsd"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5 /phpunit.xsd"
4
4
bootstrap =" vendor/autoload.php"
5
5
cacheResultFile =" .build/phpunit.result.cache"
6
6
colors =" true"
You can’t perform that action at this time.
0 commit comments