@@ -428,9 +428,9 @@ jobs:
428
428
runs-on : ubuntu-22.04
429
429
430
430
steps :
431
- - uses : actions/checkout@v3
431
+ - uses : actions/checkout@v4
432
432
433
- - uses : actions/download-artifact@v2
433
+ - uses : actions/download-artifact@v4
434
434
id : download
435
435
with :
436
436
name : microvmi_deb
@@ -453,16 +453,15 @@ jobs:
453
453
asset_name : ${{ steps.artefact.outputs.name }}
454
454
asset_content_type : application/vnd.debian.binary-package
455
455
456
-
457
456
publish_windows :
458
457
# publish the windows release on Github Release
459
458
runs-on : ubuntu-22.04
460
459
needs : github_release
461
460
steps :
462
- - uses : actions/checkout@v1
461
+ - uses : actions/checkout@v4
463
462
464
463
# download artifacts
465
- - uses : actions/download-artifact@v2
464
+ - uses : actions/download-artifact@v4
466
465
id : download
467
466
with :
468
467
# download to tmp_dir
@@ -490,7 +489,7 @@ jobs:
490
489
runs-on : ubuntu-22.04
491
490
492
491
steps :
493
- - uses : actions/checkout@v1
492
+ - uses : actions/checkout@v4
494
493
495
494
- uses : actions/cache@v4
496
495
with :
@@ -525,7 +524,7 @@ jobs:
525
524
- name : Install Xen headers and libraries
526
525
run : sudo apt-get install -y libxen-dev
527
526
528
- - uses : actions/checkout@v1
527
+ - uses : actions/checkout@v4
529
528
530
529
- name : Install Rust toolchain
531
530
uses : dtolnay/rust-toolchain@stable
@@ -535,16 +534,15 @@ jobs:
535
534
run : |
536
535
cargo publish --features xen --token ${{ secrets.CRATES_TOKEN }}
537
536
538
-
539
537
publish_pypi :
540
538
needs : github_release
541
539
runs-on : ubuntu-22.04
542
540
543
541
steps :
544
- - uses : actions/checkout@v2
542
+ - uses : actions/checkout@v4
545
543
546
544
# download all wheels into a new manylinux directory
547
- - uses : actions/download-artifact@v2
545
+ - uses : actions/download-artifact@v4
548
546
id : download
549
547
with :
550
548
name : python_wheels
0 commit comments