@@ -40,14 +40,14 @@ jobs:
4040 - uses : actions/checkout@v4
4141 with :
4242 fetch-depth : 0
43- - uses : actions/setup-python@v4
43+ - uses : actions/setup-python@v5
4444 with :
4545 python-version : 3
4646 - run : pip install --upgrade build twine
4747 - name : Build sdist and wheel
4848 run : python -m build
4949 - run : twine check dist/*
50- - uses : actions/upload-artifact@v3
50+ - uses : actions/upload-artifact@v4
5151 with :
5252 name : dist
5353 path : dist/
@@ -59,11 +59,11 @@ jobs:
5959 matrix :
6060 package : ['wheel', 'sdist']
6161 steps :
62- - uses : actions/download-artifact@v3
62+ - uses : actions/download-artifact@v4
6363 with :
6464 name : dist
6565 path : dist/
66- - uses : actions/setup-python@v4
66+ - uses : actions/setup-python@v5
6767 with :
6868 python-version : 3
6969 - name : Display Python version
@@ -124,7 +124,7 @@ jobs:
124124 steps :
125125 - uses : actions/checkout@v4
126126 - name : Set up Python ${{ matrix.python-version }}
127- uses : actions/setup-python@v4
127+ uses : actions/setup-python@v5
128128 with :
129129 python-version : ${{ matrix.python-version }}
130130 - name : Display Python version
@@ -151,9 +151,9 @@ jobs:
151151 token : ${{ secrets.CODECOV_TOKEN }}
152152 if : ${{ always() }}
153153 - name : Upload pytest test results
154- uses : actions/upload-artifact@v3
154+ uses : actions/upload-artifact@v4
155155 with :
156- name : pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
156+ name : pytest-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.deb-depends }}
157157 path : test-results.xml
158158 if : ${{ always() && matrix.check == 'test' }}
159159
@@ -163,7 +163,7 @@ jobs:
163163 needs : [stable, test-package]
164164 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
165165 steps :
166- - uses : actions/download-artifact@v3
166+ - uses : actions/download-artifact@v4
167167 with :
168168 name : dist
169169 path : dist/
0 commit comments