Skip to content

Commit 370a486

Browse files
authored
Merge pull request #2421 from WordPress/dependabot/github_actions/codecov/codecov-action-4
GH Actions: Bump codecov/codecov-action from 3 to 4
2 parents 9333efc + 37ff716 commit 370a486

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/quicktest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,10 @@ jobs:
6969

7070
- name: Send coverage report to Codecov
7171
if: ${{ success() && github.ref_name == 'develop' }}
72-
uses: codecov/codecov-action@v3
72+
uses: codecov/codecov-action@v4
7373
with:
7474
files: ./build/logs/clover.xml
7575
fail_ci_if_error: true
7676
verbose: true
77+
env:
78+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/unit-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,10 @@ jobs:
140140

141141
- name: Send coverage report to Codecov
142142
if: ${{ success() && matrix.coverage == true }}
143-
uses: codecov/codecov-action@v3
143+
uses: codecov/codecov-action@v4
144144
with:
145145
files: ./build/logs/clover.xml
146146
fail_ci_if_error: true
147147
verbose: true
148+
env:
149+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)