@@ -135,7 +135,7 @@ jobs:
135
135
}
136
136
compiler : [ gcc ]
137
137
steps :
138
- - uses : actions/checkout@v2
138
+ - uses : actions/checkout@v4
139
139
140
140
- name : ' 🛠️ Win MINGW setup'
141
141
if : contains(matrix.config.mingw, 'MINGW')
@@ -152,7 +152,7 @@ jobs:
152
152
153
153
- name : ' 🛠️ Win MSVC 64 setup'
154
154
if : contains(matrix.config.name, 'MSVC 64')
155
- uses : microsoft/setup-msbuild@v1
155
+ uses : microsoft/setup-msbuild@v2
156
156
157
157
- name : ' 🛠️ Win MSVC 64 dev cmd setup'
158
158
if : contains(matrix.config.name, 'MSVC 64')
@@ -245,7 +245,7 @@ jobs:
245
245
246
246
- name : ' 📤 Upload artifact'
247
247
if : always()
248
- uses : actions/upload-artifact@v1
248
+ uses : actions/upload-artifact@v4
249
249
with :
250
250
path : ./${{ matrix.config.artifact }}
251
251
name : ${{ matrix.config.artifact }}
@@ -306,7 +306,7 @@ jobs:
306
306
generators : ' Ninja'
307
307
}
308
308
- {
309
- os : macos-11 ,
309
+ os : macos-12 ,
310
310
arch : x86_64,
311
311
python-arch : x86_64,
312
312
python-ver : ' 3.8' ,
@@ -318,18 +318,18 @@ jobs:
318
318
}
319
319
compiler : [ gcc ]
320
320
steps :
321
- - uses : actions/checkout@v2
321
+ - uses : actions/checkout@v4
322
322
323
323
# - name: '🛠️ Python setup'
324
- # uses: actions/setup-python@v2
324
+ # uses: actions/setup-python@v5
325
325
# with:
326
326
# python-version: ${{ matrix.config.python-ver }}
327
327
328
328
- name : ' 🚧 Mac build'
329
329
if : contains(matrix.config.name, 'macos')
330
330
shell : bash
331
331
run : |
332
- brew install p7zip cmake ninja pkg-config
332
+ brew install ninja
333
333
ninja --version
334
334
cmake --version
335
335
mkdir build
@@ -353,7 +353,7 @@ jobs:
353
353
if : contains(matrix.config.name, 'android')
354
354
shell : bash
355
355
run : |
356
- brew install p7zip cmake ninja pkg-config
356
+ brew install ninja
357
357
mkdir build
358
358
mkdir instdir
359
359
cmake . -DCMAKE_TOOLCHAIN_FILE="$ANDROID_NDK/build/cmake/android.toolchain.cmake" \
@@ -372,7 +372,7 @@ jobs:
372
372
373
373
- name : ' 🚧 AVD Cache'
374
374
if : contains(matrix.config.name, 'android')
375
- uses : actions/cache@v2
375
+ uses : actions/cache@v4
376
376
id : avd-cache
377
377
with :
378
378
path : |
@@ -416,7 +416,7 @@ jobs:
416
416
417
417
- name : ' 📤 Upload artifact'
418
418
if : always()
419
- uses : actions/upload-artifact@v1
419
+ uses : actions/upload-artifact@v4
420
420
with :
421
421
path : ./${{ matrix.config.artifact }}
422
422
name : ${{ matrix.config.artifact }}
@@ -502,10 +502,10 @@ jobs:
502
502
}
503
503
compiler : [ gcc ]
504
504
steps :
505
- - uses : actions/checkout@v2
505
+ - uses : actions/checkout@v4
506
506
507
507
# - name: '🛠️ Python setup'
508
- # uses: actions/setup-python@v2
508
+ # uses: actions/setup-python@v5
509
509
# with:
510
510
# python-version: ${{ matrix.config.python-ver }}
511
511
@@ -536,7 +536,7 @@ jobs:
536
536
537
537
- name : ' 🚧 Linux ppc64le/aarch64 build'
538
538
if : contains(matrix.config.arch, 'ppc64le') || contains(matrix.config.arch, 'aarch64')
539
- uses : uraimo/run-on-arch-action@v2.0.5
539
+ uses : uraimo/run-on-arch-action@v2
540
540
with :
541
541
arch : ${{ matrix.config.arch }}
542
542
distro : ${{ matrix.config.distro }}
@@ -570,7 +570,7 @@ jobs:
570
570
571
571
- name : ' 📤 Upload artifact'
572
572
if : always()
573
- uses : actions/upload-artifact@v1
573
+ uses : actions/upload-artifact@v4
574
574
with :
575
575
path : ./${{ matrix.config.artifact }}
576
576
name : ${{ matrix.config.artifact }}
0 commit comments