7171 uses : actions/checkout@v6
7272
7373 - name : Download wheel
74- uses : actions/download-artifact@v4
74+ uses : actions/download-artifact@v7
7575 with :
7676 name : wheel-py3.12-linux-x86_64
7777 path : dist/
8383 run : make -C docs html
8484
8585 - name : Upload docs artifact
86- uses : actions/upload-artifact@v4
86+ uses : actions/upload-artifact@v6
8787 with :
8888 name : docs-html
8989 path : docs/build/html
@@ -115,7 +115,7 @@ jobs:
115115 run : python setup.py bdist_wheel
116116
117117 - name : Upload wheel artifact
118- uses : actions/upload-artifact@v4
118+ uses : actions/upload-artifact@v6
119119 with :
120120 name : wheel-py${{ matrix.python-version }}-linux-x86_64
121121 path : dist/*.whl
@@ -149,7 +149,7 @@ jobs:
149149 uses : actions/checkout@v6
150150
151151 - name : Download wheel
152- uses : actions/download-artifact@v4
152+ uses : actions/download-artifact@v7
153153 with :
154154 name : wheel-py${{ matrix.python-version }}-linux-x86_64
155155 path : dist/
@@ -166,15 +166,15 @@ jobs:
166166
167167 - name : Upload test results
168168 if : always()
169- uses : actions/upload-artifact@v4
169+ uses : actions/upload-artifact@v6
170170 with :
171171 name : test-results-py${{ matrix.python-version }}
172172 path : test-results.xml
173173 retention-days : 7
174174
175175 - name : Report test results
176176 if : always()
177- uses : dorny/test-reporter@v2
177+ uses : dorny/test-reporter@v3
178178 with :
179179 name : Test Results (Python ${{ matrix.python-version }})
180180 path : test-results.xml
0 commit comments