4343 runs-on : ubuntu-latest
4444
4545 steps :
46- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
46+ - name : Checkout project
47+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4748
48- - name : Check out recursively
49+ - name : Check out submodules
4950 run : git submodule update --init --recursive
5051
5152 - name : Set up Python
7475 outputs :
7576 include : ${{ steps.set-matrix.outputs.include }}
7677 steps :
77- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
78+ - name : Checkout project
79+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7880
7981 - name : Install cibuildwheel
8082 # Nb. keep cibuildwheel version pin consistent with job below
@@ -112,9 +114,10 @@ jobs:
112114 LUPA_WITH_LUA_DLOPEN : ${{ startsWith(matrix.os, 'windows') && 'false' || 'true' }}
113115
114116 steps :
115- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
117+ - name : Checkout project
118+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
116119
117- - name : Check out recursively
120+ - name : Check out submodules
118121 run : git submodule update --init --recursive
119122
120123 - name : Set up QEMU
@@ -146,7 +149,8 @@ jobs:
146149 with :
147150 only : ${{ matrix.only }}
148151
149- - uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
152+ - name : Upload wheels
153+ uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
150154 with :
151155 path : ./wheelhouse/*.whl
152156 name : wheel-${{ matrix.only }}
@@ -181,9 +185,10 @@ jobs:
181185 lapiversion : ' 3.9'
182186
183187 steps :
184- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
188+ - name : Checkout project
189+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
185190
186- - name : Check out recursively
191+ - name : Check out submodules
187192 run : git submodule update --init --recursive
188193
189194 - name : Set up Python
@@ -235,7 +240,8 @@ jobs:
235240 python -m pip install twine
236241 python -m twine check ./wheelhouse/*.whl
237242
238- - uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
243+ - name : Upload wheels
244+ uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
239245 with :
240246 name : Stable-ABI-${{ matrix.os }}-${{ strategy.job-index }}
241247 path : ./wheelhouse/*.whl
@@ -259,7 +265,8 @@ jobs:
259265 - name : List downloaded artifacts
260266 run : ls -la ./bdist_downloads
261267
262- - uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
268+ - name : Upload wheels
269+ uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
263270 with :
264271 path : ./bdist_downloads/*.whl
265272 name : wheels
@@ -285,9 +292,10 @@ jobs:
285292 runs-on : ubuntu-latest
286293
287294 steps :
288- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
295+ - name : Checkout project
296+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
289297
290- - name : Check out recursively
298+ - name : Check out submodules
291299 run : git submodule update --init --recursive
292300
293301 - name : Set up Python
0 commit comments