File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -97,14 +97,14 @@ jobs:
9797
9898 - name : Upload coverage data
9999 if : always() && matrix.session == 'tests'
100- uses : " actions/upload-artifact@v3 "
100+ uses : actions/upload-artifact@v4
101101 with :
102- name : coverage-data
102+ name : coverage-data-${{ matrix.os }}-${{ matrix.python }}
103103 path : " .coverage.*"
104104
105105 - name : Upload documentation
106106 if : matrix.session == 'docs-build'
107- uses : actions/upload-artifact@v3
107+ uses : actions/upload-artifact@v4
108108 with :
109109 name : docs
110110 path : docs/_build
@@ -138,9 +138,10 @@ jobs:
138138 nox --version
139139
140140 - name : Download coverage data
141- uses : actions/download-artifact@v3
141+ uses : actions/download-artifact@v4
142142 with :
143- name : coverage-data
143+ pattern : coverage-data-*
144+ merge-multiple : true
144145
145146 - name : Combine coverage data and display human readable report
146147 run : |
You can’t perform that action at this time.
0 commit comments