Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-base-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Create dummy file
run: touch dummy
- name: Upload artefact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: dummy
path: dummy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cli-npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Build
shell: sh
run: make build-cli
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: cli_linux_x64
path: target/release/jstz
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Build
shell: sh
run: make build-cli
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: cli_linux_arm64
path: target/release/jstz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ jobs:
run: nix --accept-flake-config --log-format raw -L build -j auto .#jstz_lightweight_kernel -o result-lightweight
- name: Upload kernel
id: upload-kernel
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: jstz-kernel
path: result-kernel/lib/jstz_kernel.wasm
- name: Upload lightweight kernel
id: upload-lightweight-kernel
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: lightweight-kernel-executable
path: result-lightweight/bin/lightweight-kernel-executable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runtime-api-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
cd crates/jstz_runtime
bash ./tests/api_coverage/setup.sh || exit $?
OUTPUT_PATH=./output.json cargo test --test api_coverage
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: api_coverage_report
path: crates/jstz_runtime/output.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
else
npm i
fi
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: sdk_npm_package
path: crates/jstz_sdk/pkg
Expand Down