Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/deb-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@ jobs:
ref: ${{ inputs['checkout-ref'] }}

- name: Download CLI artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: cli-linux-${{ matrix.arch }}
path: package-input/

- name: Download gateway artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: gateway-binary-linux-${{ matrix.arch }}
path: package-input/

- name: Download VM driver artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: driver-vm-linux-${{ matrix.arch }}
path: package-input/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
buildkitd-config: /etc/buildkit/buildkitd.toml

- name: Download Rust binary artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ needs.resolve.outputs.artifact_prefix }}-linux-${{ matrix.arch }}
path: prebuilt-rust-binary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/driver-vm-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
run: apt-get update && apt-get install -y --no-install-recommends zstd && rm -rf /var/lib/apt/lists/*

- name: Download kernel runtime tarball
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: vm-driver-kernel-runtime-tarballs
path: runtime-download/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/driver-vm-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
run: apt-get update && apt-get install -y --no-install-recommends zstd && rm -rf /var/lib/apt/lists/*

- name: Download kernel runtime tarball
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: vm-driver-macos-kernel-runtime-tarball
path: runtime-download/
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
ls -lah "$COMPRESSED_DIR"

- name: Download bundled supervisor
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: driver-vm-supervisor-arm64
path: target/vm-runtime-compressed-macos/
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -679,49 +679,49 @@ jobs:
- uses: actions/checkout@v6

- name: Download all CLI artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: cli-*
path: release/
merge-multiple: true

- name: Download gateway binary artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: gateway-binary-*
path: release/
merge-multiple: true

- name: Download supervisor binary artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: supervisor-binary-*
path: release/
merge-multiple: true

- name: Download VM driver artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: driver-vm-*
path: release/
merge-multiple: true

- name: Download wheel artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: python-wheels-*
path: release/
merge-multiple: true

- name: Download Debian package artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: deb-linux-*
path: release/
merge-multiple: true

- name: Download RPM package artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: rpm-linux-*
path: release/
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -708,49 +708,49 @@ jobs:
ref: ${{ inputs.tag || github.ref }}

- name: Download all CLI artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: cli-*
path: release/
merge-multiple: true

- name: Download gateway binary artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: gateway-binary-*
path: release/
merge-multiple: true

- name: Download supervisor binary artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: supervisor-binary-*
path: release/
merge-multiple: true

- name: Download VM driver artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: driver-vm-*
path: release/
merge-multiple: true

- name: Download wheel artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: python-wheels-*
path: release/
merge-multiple: true

- name: Download Debian package artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: deb-linux-*
path: release/
merge-multiple: true

- name: Download RPM package artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: rpm-linux-*
path: release/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-vm-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
brew install lld dtc xz

- name: Download pre-built kernel.c
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: kernel-c-arm64
path: target/kernel-artifact
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
- uses: actions/checkout@v6

- name: Download all runtime artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: vm-runtime-*
path: release/
Expand Down
Loading