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 @@ -100,14 +100,15 @@ jobs:
100
100
run : pipx run coverage xml --ignore-errors
101
101
- name : Publish coverage
102
102
if : hashFiles('coverage.xml') != '' # Rudimentary `file.exists()`
103
- uses : codecov/codecov-action@v3
103
+ uses : codecov/codecov-action@v4
104
104
with :
105
105
flags : >- # Mark which lines are covered by which envs
106
106
CI-GHA,
107
107
${{ github.job }},
108
108
OS-${{ runner.os }},
109
109
VM-${{ matrix.platform }},
110
110
Py-${{ steps.python-install.outputs.python-version }}
111
+ token : ${{ secrets.CODECOV_TOKEN }}
111
112
112
113
collateral :
113
114
strategy :
@@ -190,7 +191,7 @@ jobs:
190
191
shell : C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
191
192
- name : Publish coverage
192
193
if : hashFiles('coverage.xml') != '' # Rudimentary `file.exists()`
193
- uses : codecov/codecov-action@v3
194
+ uses : codecov/codecov-action@v4
194
195
with :
195
196
files : >-
196
197
${{ github.workspace }}\coverage.xml
@@ -200,6 +201,7 @@ jobs:
200
201
OS-${{ runner.os }},
201
202
VM-${{ matrix.platform }},
202
203
Py-${{ steps.python-install.outputs.python-version }}
204
+ token : ${{ secrets.CODECOV_TOKEN }}
203
205
204
206
integration-test :
205
207
needs : test
You can’t perform that action at this time.
0 commit comments