@@ -566,6 +566,8 @@ jobs:
566
566
with :
567
567
node-version : 20
568
568
- uses : actions/setup-python@v5
569
+ with :
570
+ python-version : ' 3.11.7'
569
571
- name : Restore caches
570
572
uses : ./.github/actions/restore-cache
571
573
env :
@@ -1346,20 +1348,20 @@ jobs:
1346
1348
ln -sf python3 /usr/bin/python
1347
1349
1348
1350
- name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
1349
- uses : actions/checkout@v2
1351
+ uses : actions/checkout@v4
1350
1352
with :
1351
1353
ref : ${{ env.HEAD_COMMIT }}
1352
1354
1353
1355
- name : Restore dependency cache
1354
- uses : actions/cache/restore@v3
1356
+ uses : actions/cache/restore@v4
1355
1357
id : restore-dependencies
1356
1358
with :
1357
1359
path : ${{ env.CACHED_DEPENDENCY_PATHS }}
1358
1360
key : ${{ needs.job_install_deps.outputs.dependency_cache_key }}
1359
1361
enableCrossOsArchive : true
1360
1362
1361
1363
- name : Restore build cache
1362
- uses : actions/cache/restore@v3
1364
+ uses : actions/cache/restore@v4
1363
1365
id : restore-build
1364
1366
with :
1365
1367
path : ${{ env.CACHED_BUILD_PATHS }}
@@ -1378,14 +1380,14 @@ jobs:
1378
1380
run : yarn config set network-timeout 600000 -g
1379
1381
1380
1382
- name : Setup python
1381
- uses : actions/setup-python@v4
1383
+ uses : actions/setup-python@v5
1382
1384
if : ${{ !contains(matrix.container, 'alpine') }}
1383
1385
id : python-setup
1384
1386
with :
1385
1387
python-version : ' 3.8.10'
1386
1388
1387
1389
- name : Setup Node
1388
- uses : actions/setup-node@v3
1390
+ uses : actions/setup-node@v4
1389
1391
with :
1390
1392
node-version : ${{ matrix.node }}
1391
1393
0 commit comments