Skip to content

Commit

Permalink
CI: Update actions to v4
Browse files Browse the repository at this point in the history
Update Github actions to v4 for checkout and upload-artifact
  • Loading branch information
chp-io committed Nov 7, 2024
1 parent 100d529 commit 0edc2f4
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/microv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
clang-format:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
build-efi:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand All @@ -70,7 +70,7 @@ jobs:
make
shell: bash

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: microv_efi
path: |
Expand All @@ -79,7 +79,7 @@ jobs:
build-efi-with-readconsole:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand All @@ -103,7 +103,7 @@ jobs:
make
shell: bash

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: microv_efi_xen_readconsole
path: |
Expand All @@ -113,7 +113,7 @@ jobs:
build-efi-debug:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand All @@ -140,7 +140,7 @@ jobs:
make -j
shell: bash

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: microv_efi_debug
path: |
Expand All @@ -149,7 +149,7 @@ jobs:
build-efi-noeth:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand All @@ -173,7 +173,7 @@ jobs:
make
shell: bash

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: microv_efi_noeth
path: |
Expand All @@ -182,7 +182,7 @@ jobs:
build-userpace:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
& msbuild /p:Configuration=Release /p:Platform=x64 /p:TargetVersion=Windows10 hypervisor.sln
shell: pwsh

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: microv_userspace
path: |
Expand All @@ -219,7 +219,7 @@ jobs:
build-userpace-debug:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
& msbuild /p:Configuration=Release /p:Platform=x64 /p:TargetVersion=Windows10 hypervisor.sln
shell: pwsh

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: microv_userspace_debug
path: |
Expand All @@ -256,7 +256,7 @@ jobs:
build-drivers:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand All @@ -283,7 +283,7 @@ jobs:
.\build-all.ps1 -RegisterBasedAbi
shell: pwsh

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: microv_drivers
path: |
Expand All @@ -305,7 +305,7 @@ jobs:
build-drivers-nocerts:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: microv

Expand Down Expand Up @@ -336,7 +336,7 @@ jobs:
.\build-all.ps1 -RegisterBasedAbi
shell: pwsh

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: microv_drivers_nocerts
path: |
Expand Down

0 comments on commit 0edc2f4

Please sign in to comment.