2222 run : |
2323 git config --global core.autocrlf false
2424 git config --global core.eol lf
25- - uses : actions/checkout@v3
25+ - uses : actions/checkout@v4
2626 - uses : msys2/setup-msys2@v2
2727 with :
2828 msystem : ${{ matrix.msystem }}
@@ -150,7 +150,7 @@ jobs:
150150 tar -zcf python.tar.gz python_pkgdir/
151151
152152 - name : Upload
153- uses : actions/upload-artifact@v3
153+ uses : actions/upload-artifact@v4
154154 if : always()
155155 with :
156156 name : build-${{ matrix.msystem }}
@@ -161,7 +161,7 @@ jobs:
161161 container :
162162 image : ubuntu:24.10
163163 steps :
164- - uses : actions/checkout@v3
164+ - uses : actions/checkout@v4
165165 - name : Install deps
166166 run : |
167167 apt-get update
@@ -175,7 +175,7 @@ jobs:
175175 make \
176176 pkg-config
177177
178- - uses : actions/setup-python@v4
178+ - uses : actions/setup-python@v5
179179 with :
180180 python-version : ' 3.12'
181181
@@ -207,7 +207,7 @@ jobs:
207207 zip -r install.zip _build/install
208208
209209 - name : Upload
210- uses : actions/upload-artifact@v3
210+ uses : actions/upload-artifact@v4
211211 with :
212212 name : build-cross-gcc-x86_64
213213 path : install.zip
@@ -216,7 +216,7 @@ jobs:
216216 needs : [cross-gcc-x86_64]
217217 runs-on : windows-latest
218218 steps :
219- - uses : actions/download-artifact@v3
219+ - uses : actions/download-artifact@v4
220220 with :
221221 name : build-cross-gcc-x86_64
222222
@@ -235,7 +235,7 @@ jobs:
235235 matrix :
236236 arch : ['x86_64', 'i686', 'aarch64', 'armv7']
237237 steps :
238- - uses : actions/checkout@v3
238+ - uses : actions/checkout@v4
239239
240240 - name : Install deps
241241 run : |
@@ -272,7 +272,7 @@ jobs:
272272 zip -r install.zip _build/install
273273
274274 - name : Upload
275- uses : actions/upload-artifact@v3
275+ uses : actions/upload-artifact@v4
276276 with :
277277 name : build-cross-llvm-mingw-${{ matrix.arch }}
278278 path : install.zip
@@ -285,7 +285,7 @@ jobs:
285285 matrix :
286286 arch : ['x86_64', 'i686']
287287 steps :
288- - uses : actions/download-artifact@v3
288+ - uses : actions/download-artifact@v4
289289 with :
290290 name : build-cross-llvm-mingw-${{ matrix.arch }}
291291
0 commit comments