Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Bump actions/upload-artifact from 3 to 4 #1311

Merged
Merged
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/arm-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Build all executables
run: nix-shell --run "cargo build --release"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: arm-executables
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,19 @@ jobs:
- name: Build demo geth data dir
run: nix-shell --run "demo/initialize-demo-geth"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wallet-webserver
path: |
target/release/wallet-api

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wallet-cli
path: |
target/release/wallet-cli

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: services-executables
path: |
Expand All @@ -104,7 +104,7 @@ jobs:
target/release/faucet
target/release/minimal-relayer

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: geth-data-dir
path: |
Expand Down