Skip to content

Commit 8f93648

Browse files
committed
:octocat: CI update
1 parent 1d377d4 commit 8f93648

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout"
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636

3737
- name: "Install PHP"
3838
uses: shivammathur/setup-php@v2
@@ -56,7 +56,7 @@ jobs:
5656

5757
steps:
5858
- name: "Checkout sources"
59-
uses: actions/checkout@v3
59+
uses: actions/checkout@v4
6060

6161
- name: "Install PHP"
6262
uses: shivammathur/setup-php@v2
@@ -95,7 +95,7 @@ jobs:
9595

9696
steps:
9797
- name: "Checkout"
98-
uses: actions/checkout@v3
98+
uses: actions/checkout@v4
9999

100100
- name: "Install PHP with extensions"
101101
uses: shivammathur/setup-php@v2
@@ -111,7 +111,10 @@ jobs:
111111
run: php vendor/phpunit/phpunit/phpunit --configuration=phpunit.xml.dist
112112

113113
- name: "Send code coverage report to Codecov.io"
114-
uses: codecov/codecov-action@v3
114+
uses: codecov/codecov-action@v4
115+
with:
116+
token: ${{ secrets.CODECOV_TOKEN }}
117+
files: .build/coverage/clover.xml
115118

116119
- name: "Send code coverage report to Codacy"
117120
uses: codacy/codacy-coverage-reporter-action@v1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"phan/phan": "^5.4",
2828
"phpmd/phpmd": "^2.15",
2929
"phpunit/phpunit": "^10.5",
30-
"squizlabs/php_codesniffer": "^3.8"
30+
"squizlabs/php_codesniffer": "^3.9"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)