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/
@@ -183,7 +183,7 @@ jobs:
183
183
ARCH : ${{ !contains(fromJSON('["none", "min"]'), matrix.dependencies) && matrix.architecture }}
184
184
185
185
steps :
186
- - uses : actions/checkout@v4
186
+ - uses : actions/checkout@v5
187
187
with :
188
188
submodules : recursive
189
189
fetch-depth : 0
@@ -242,7 +242,7 @@ jobs:
242
242
check : ['style', 'doctest', 'typecheck', 'spellcheck']
243
243
244
244
steps :
245
- - uses : actions/checkout@v4
245
+ - uses : actions/checkout@v5
246
246
- name : Set up Python ${{ matrix.python-version }}
247
247
uses : actions/setup-python@v5
248
248
with :
@@ -265,7 +265,7 @@ jobs:
265
265
id-token : write
266
266
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
267
267
steps :
268
- - uses : actions/download-artifact@v4
268
+ - uses : actions/download-artifact@v5
269
269
with :
270
270
name : dist
271
271
path : dist/
0 commit comments