Skip to content

Commit d5a0270

Browse files
committed
ci: update checkout and artifact actions
1 parent fb62d9e commit d5a0270

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

.github/workflows/ci.yml

+8-10
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ jobs:
428428
runs-on: ubuntu-22.04
429429

430430
steps:
431-
- uses: actions/checkout@v3
431+
- uses: actions/checkout@v4
432432

433-
- uses: actions/download-artifact@v2
433+
- uses: actions/download-artifact@v4
434434
id: download
435435
with:
436436
name: microvmi_deb
@@ -453,16 +453,15 @@ jobs:
453453
asset_name: ${{ steps.artefact.outputs.name }}
454454
asset_content_type: application/vnd.debian.binary-package
455455

456-
457456
publish_windows:
458457
# publish the windows release on Github Release
459458
runs-on: ubuntu-22.04
460459
needs: github_release
461460
steps:
462-
- uses: actions/checkout@v1
461+
- uses: actions/checkout@v4
463462

464463
# download artifacts
465-
- uses: actions/download-artifact@v2
464+
- uses: actions/download-artifact@v4
466465
id: download
467466
with:
468467
# download to tmp_dir
@@ -490,7 +489,7 @@ jobs:
490489
runs-on: ubuntu-22.04
491490

492491
steps:
493-
- uses: actions/checkout@v1
492+
- uses: actions/checkout@v4
494493

495494
- uses: actions/cache@v4
496495
with:
@@ -525,7 +524,7 @@ jobs:
525524
- name: Install Xen headers and libraries
526525
run: sudo apt-get install -y libxen-dev
527526

528-
- uses: actions/checkout@v1
527+
- uses: actions/checkout@v4
529528

530529
- name: Install Rust toolchain
531530
uses: dtolnay/rust-toolchain@stable
@@ -535,16 +534,15 @@ jobs:
535534
run: |
536535
cargo publish --features xen --token ${{ secrets.CRATES_TOKEN }}
537536
538-
539537
publish_pypi:
540538
needs: github_release
541539
runs-on: ubuntu-22.04
542540

543541
steps:
544-
- uses: actions/checkout@v2
542+
- uses: actions/checkout@v4
545543

546544
# download all wheels into a new manylinux directory
547-
- uses: actions/download-artifact@v2
545+
- uses: actions/download-artifact@v4
548546
id: download
549547
with:
550548
name: python_wheels

0 commit comments

Comments
 (0)