File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -105,14 +105,15 @@ jobs:
105
105
run : pipx run coverage xml --ignore-errors
106
106
- name : Publish coverage
107
107
if : hashFiles('coverage.xml') != '' # Rudimentary `file.exists()`
108
- uses : codecov/codecov-action@v3
108
+ uses : codecov/codecov-action@v4
109
109
with :
110
110
flags : >- # Mark which lines are covered by which envs
111
111
CI-GHA,
112
112
${{ github.job }},
113
113
OS-${{ runner.os }},
114
114
VM-${{ matrix.platform }},
115
115
Py-${{ steps.python-install.outputs.python-version }}
116
+ token : ${{ secrets.CODECOV_TOKEN }}
116
117
117
118
collateral :
118
119
strategy :
@@ -195,7 +196,7 @@ jobs:
195
196
shell : C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
196
197
- name : Publish coverage
197
198
if : hashFiles('coverage.xml') != '' # Rudimentary `file.exists()`
198
- uses : codecov/codecov-action@v3
199
+ uses : codecov/codecov-action@v4
199
200
with :
200
201
files : >-
201
202
${{ github.workspace }}\coverage.xml
@@ -205,6 +206,7 @@ jobs:
205
206
OS-${{ runner.os }},
206
207
VM-${{ matrix.platform }},
207
208
Py-${{ steps.python-install.outputs.python-version }}
209
+ token : ${{ secrets.CODECOV_TOKEN }}
208
210
209
211
integration-test :
210
212
needs : test
You can’t perform that action at this time.
0 commit comments