41
41
build :
42
42
runs-on : ubuntu-latest
43
43
steps :
44
- - uses : actions/checkout@v4
44
+ - uses : actions/checkout@v5
45
45
with :
46
46
fetch-depth : 0
47
47
- uses : actions/setup-python@v5
@@ -73,13 +73,13 @@ jobs:
73
73
steps :
74
74
- name : Download sdist and wheel artifacts
75
75
if : matrix.package != 'archive'
76
- uses : actions/download-artifact@v4
76
+ uses : actions/download-artifact@v5
77
77
with :
78
78
name : dist
79
79
path : dist/
80
80
- name : Download git archive artifact
81
81
if : matrix.package == 'archive'
82
- uses : actions/download-artifact@v4
82
+ uses : actions/download-artifact@v5
83
83
with :
84
84
name : archive
85
85
path : archive/
@@ -196,7 +196,7 @@ jobs:
196
196
ARCH : ${{ !contains(fromJSON('["none", "min"]'), matrix.dependencies) && matrix.architecture }}
197
197
198
198
steps :
199
- - uses : actions/checkout@v4
199
+ - uses : actions/checkout@v5
200
200
with :
201
201
submodules : recursive
202
202
fetch-depth : 0
@@ -257,7 +257,7 @@ jobs:
257
257
check : ['style', 'doctest', 'typecheck', 'spellcheck']
258
258
259
259
steps :
260
- - uses : actions/checkout@v4
260
+ - uses : actions/checkout@v5
261
261
- name : Set up Python ${{ matrix.python-version }}
262
262
uses : actions/setup-python@v5
263
263
with :
@@ -280,7 +280,7 @@ jobs:
280
280
id-token : write
281
281
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
282
282
steps :
283
- - uses : actions/download-artifact@v4
283
+ - uses : actions/download-artifact@v5
284
284
with :
285
285
name : dist
286
286
path : dist/
0 commit comments