@@ -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
@@ -150,7 +150,7 @@ jobs:
150150 file : coverage.xml
151151 if : ${{ always() }}
152152 - name : Upload pytest test results
153- uses : actions/upload-artifact@v3
153+ uses : actions/upload-artifact@v4
154154 with :
155155 name : pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
156156 path : test-results.xml
@@ -162,7 +162,7 @@ jobs:
162162 needs : [stable, test-package]
163163 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
164164 steps :
165- - uses : actions/download-artifact@v3
165+ - uses : actions/download-artifact@v4
166166 with :
167167 name : dist
168168 path : dist/
0 commit comments