Skip to content

Commit baba5a7

Browse files
build(deps): bump codecov/codecov-action from 3 to 4 (#856)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sam Bull <git@sambull.org>
1 parent 30a1aea commit baba5a7

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,12 @@ jobs:
124124
pytest tests
125125
python -m coverage xml
126126
- name: Upload coverage
127-
uses: codecov/codecov-action@v3
127+
uses: codecov/codecov-action@v4
128128
with:
129129
fail_ci_if_error: true
130130
files: ./coverage.xml
131131
flags: unit
132+
token: ${{ secrets.CODECOV_TOKEN }}
132133

133134
test-integration:
134135
name: Integration Test
@@ -175,19 +176,21 @@ jobs:
175176
run: yarn test --coverage
176177
working-directory: admin-js/
177178
- name: Upload JS coverage
178-
uses: codecov/codecov-action@v3
179+
uses: codecov/codecov-action@v4
179180
with:
180181
fail_ci_if_error: true
181182
directory: admin-js/coverage/
182183
flags: js, integration
184+
token: ${{ secrets.CODECOV_TOKEN }}
183185
- name: Generate Python coverage
184186
run: python -m coverage xml
185187
- name: Upload Python coverage
186-
uses: codecov/codecov-action@v3
188+
uses: codecov/codecov-action@v4
187189
with:
188190
fail_ci_if_error: true
189191
files: ./coverage.xml
190192
flags: integration
193+
token: ${{ secrets.CODECOV_TOKEN }}
191194

192195
check: # This job does nothing and is only used for the branch protection
193196
if: always()

0 commit comments

Comments
 (0)