File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -112,14 +112,15 @@ jobs:
112112
113113 - name : Upload coverage data
114114 if : always() && matrix.session == 'tests'
115- uses : " actions/upload-artifact@v3 "
115+ uses : actions/upload-artifact@v4
116116 with :
117- name : coverage-data
117+ name : coverage-data-${{ matrix.os }}-${{ matrix.python }}
118+ include-hidden-files : true
118119 path : " .coverage.*"
119120
120121 - name : Upload documentation
121122 if : matrix.session == 'docs-build'
122- uses : actions/upload-artifact@v3
123+ uses : actions/upload-artifact@v4
123124 with :
124125 name : docs
125126 path : docs/_build
@@ -153,9 +154,10 @@ jobs:
153154 nox --version
154155
155156 - name : Download coverage data
156- uses : actions/download-artifact@v3
157+ uses : actions/download-artifact@v4
157158 with :
158- name : coverage-data
159+ pattern : coverage-data-*
160+ merge-multiple : true
159161
160162 - name : Combine coverage data and display human readable report
161163 run : |
@@ -166,6 +168,6 @@ jobs:
166168 nox --session=coverage -- xml -i
167169
168170 - name : Upload coverage report
169- uses : codecov/codecov-action@v4.5.0
171+ uses : codecov/codecov-action@v4
170172 with :
171173 token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments