Skip to content

Commit 8f58ebb

Browse files
committed
chore(deps): update release workflow to use actions/upload-artifact@v4
Signed-off-by: MorningTZH <morningtzh@yeah.net>
1 parent a0c38ec commit 8f58ebb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/release.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Build vmm sandboxer
2525
run: make bin/vmm-sandboxer HYPERVISOR=${{ matrix.hypervisor }}
2626
- name: Upload Artifacts
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: vmm-sandboxer ${{ matrix.hypervisor }}
3030
path: |
@@ -39,7 +39,7 @@ jobs:
3939
- name: Build vm image
4040
run: sudo make bin/kuasar.img RUNTIME=docker
4141
- name: Upload Artifacts
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: image
4545
path: bin/kuasar.img
@@ -55,7 +55,7 @@ jobs:
5555
- name: Build vm kernel
5656
run: make bin/vmlinux.bin HYPERVISOR=${{ matrix.hypervisor }}
5757
- name: Upload Artifacts
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: kernel ${{ matrix.hypervisor }}
6161
path: bin/vmlinux.bin
@@ -68,7 +68,7 @@ jobs:
6868
- name: Build quark
6969
run: make quark
7070
- name: Upload Artifacts
71-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
7272
with:
7373
name: quark
7474
path: bin/quark-sandboxer
@@ -90,7 +90,7 @@ jobs:
9090
- name: Build wasm
9191
run: make wasm WASM_RUNTIME=${{ matrix.features }}
9292
- name: Upload Artifacts
93-
uses: actions/upload-artifact@v3
93+
uses: actions/upload-artifact@v4
9494
with:
9595
name: wasm-sandboxer ${{ matrix.features }}
9696
path: bin/wasm-sandboxer
@@ -103,7 +103,7 @@ jobs:
103103
- name: Build runc
104104
run: make runc
105105
- name: Upload Artifacts
106-
uses: actions/upload-artifact@v3
106+
uses: actions/upload-artifact@v4
107107
with:
108108
name: runc
109109
path: bin/runc-sandboxer
@@ -117,7 +117,7 @@ jobs:
117117
run: ./scripts/build/build-containerd.sh
118118
shell: bash
119119
- name: Upload Artifacts
120-
uses: actions/upload-artifact@v3
120+
uses: actions/upload-artifact@v4
121121
with:
122122
name: containerd
123123
path: |
@@ -149,7 +149,7 @@ jobs:
149149
sudo -E chown -R root:root /tmp/${dir}
150150
mkdir _release
151151
sudo -E tar -czf _release/${dir}.tar.gz -C /tmp/ ${dir}
152-
- uses: actions/download-artifact@v3
152+
- uses: actions/download-artifact@v4
153153
with:
154154
path: _artifacts
155155
- name: Package binaries

0 commit comments

Comments
 (0)