@@ -18,10 +18,10 @@ jobs:
1818 python-version : ["3.10", "3.11", "3.12"]
1919
2020 steps :
21- - uses : actions/checkout@v4
21+ - uses : actions/checkout@v5
2222
2323 - name : Set up Python ${{ matrix.python-version }}
24- uses : actions/setup-python@v5
24+ uses : actions/setup-python@v6
2525 with :
2626 python-version : ${{ matrix.python-version }}
2727
3636
3737 - name : Upload coverage to Codecov
3838 if : matrix.python-version == '3.11'
39- uses : codecov/codecov-action@v4
39+ uses : codecov/codecov-action@v5
4040 with :
4141 file : ./coverage.xml
4242 fail_ci_if_error : false
@@ -45,10 +45,10 @@ jobs:
4545 name : Security Checks
4646 runs-on : ubuntu-latest
4747 steps :
48- - uses : actions/checkout@v4
48+ - uses : actions/checkout@v5
4949
5050 - name : Set up Python
51- uses : actions/setup-python@v5
51+ uses : actions/setup-python@v6
5252 with :
5353 python-version : " 3.11"
5454
@@ -69,12 +69,12 @@ jobs:
6969 needs : [test, security]
7070
7171 steps :
72- - uses : actions/checkout@v4
72+ - uses : actions/checkout@v5
7373 with :
7474 fetch-depth : 0
7575
7676 - name : Set up Python
77- uses : actions/setup-python@v5
77+ uses : actions/setup-python@v6
7878 with :
7979 python-version : " 3.11"
8080
@@ -120,7 +120,7 @@ jobs:
120120 twine check dist/*
121121
122122 - name : Upload build artifacts
123- uses : actions/upload-artifact@v4
123+ uses : actions/upload-artifact@v5
124124 with :
125125 name : dist-${{ steps.version.outputs.VERSION }}
126126 path : dist/
@@ -131,7 +131,7 @@ jobs:
131131 needs : [build]
132132
133133 steps :
134- - uses : actions/checkout@v4
134+ - uses : actions/checkout@v5
135135 with :
136136 fetch-depth : 0
137137
@@ -142,7 +142,7 @@ jobs:
142142 echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
143143
144144 - name : Download build artifacts
145- uses : actions/download-artifact@v4
145+ uses : actions/download-artifact@v6
146146 with :
147147 name : dist-${{ steps.version.outputs.VERSION }}
148148 path : dist/
@@ -196,10 +196,10 @@ jobs:
196196 id-token : write # Required for trusted publishing to TestPyPI
197197
198198 steps :
199- - uses : actions/checkout@v4
199+ - uses : actions/checkout@v5
200200
201201 - name : Set up Python
202- uses : actions/setup-python@v5
202+ uses : actions/setup-python@v6
203203 with :
204204 python-version : " 3.11"
205205
@@ -209,7 +209,7 @@ jobs:
209209 echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
210210
211211 - name : Download build artifacts
212- uses : actions/download-artifact@v4
212+ uses : actions/download-artifact@v6
213213 with :
214214 name : dist-${{ steps.version.outputs.VERSION }}
215215 path : dist/
@@ -246,7 +246,7 @@ jobs:
246246
247247 steps :
248248 - name : Set up Python ${{ matrix.python-version }}
249- uses : actions/setup-python@v5
249+ uses : actions/setup-python@v6
250250 with :
251251 python-version : ${{ matrix.python-version }}
252252
@@ -274,15 +274,15 @@ jobs:
274274 id-token : write # Required for trusted publishing to PyPI
275275
276276 steps :
277- - uses : actions/checkout@v4
277+ - uses : actions/checkout@v5
278278
279279 - name : Extract version from tag
280280 id : version
281281 run : |
282282 echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
283283
284284 - name : Download build artifacts
285- uses : actions/download-artifact@v4
285+ uses : actions/download-artifact@v6
286286 with :
287287 name : dist-${{ steps.version.outputs.VERSION }}
288288 path : dist/
@@ -314,7 +314,7 @@ jobs:
314314
315315 steps :
316316 - name : Set up Python ${{ matrix.python-version }}
317- uses : actions/setup-python@v5
317+ uses : actions/setup-python@v6
318318 with :
319319 python-version : ${{ matrix.python-version }}
320320
0 commit comments