@@ -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
@@ -145,14 +145,15 @@ jobs:
145145 - name : Run tests
146146 run : tools/ci/check.sh
147147 if : ${{ matrix.check != 'skiptests' }}
148- - uses : codecov/codecov-action@v3
148+ - uses : codecov/codecov-action@v4
149149 with :
150150 file : coverage.xml
151+ token : ${{ secrets.CODECOV_TOKEN }}
151152 if : ${{ always() }}
152153 - name : Upload pytest test results
153- uses : actions/upload-artifact@v3
154+ uses : actions/upload-artifact@v4
154155 with :
155- name : pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
156+ name : pytest-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.deb-depends }}
156157 path : test-results.xml
157158 if : ${{ always() && matrix.check == 'test' }}
158159
@@ -162,7 +163,7 @@ jobs:
162163 needs : [stable, test-package]
163164 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
164165 steps :
165- - uses : actions/download-artifact@v3
166+ - uses : actions/download-artifact@v4
166167 with :
167168 name : dist
168169 path : dist/
0 commit comments