Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/download-artifact from 3 to 4 #1482

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/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
echo "HOME=/home/actions" >> "$GITHUB_ENV"

- name: Download benchmark binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-node
path: target/release
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ jobs:
docker run --rm -p 8545:8545 -d gluwa/hardhat-dev

- name: Download creditcoin-node binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-node
path: target/release
Expand Down Expand Up @@ -503,7 +503,7 @@ jobs:
docker run --rm -p 8545:8545 -d gluwa/hardhat-dev

- name: Download creditcoin-node binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-node
path: target/release
Expand All @@ -520,7 +520,7 @@ jobs:
./integration-tests/wait-for-creditcoin.sh

- name: Download creditcoin-transaction-producer archive
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-transaction-producer.tar.gz

Expand Down Expand Up @@ -571,7 +571,7 @@ jobs:
ref: ${{ github.event.pull_request.head.ref }}

- name: Download creditcoin-node binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-node
path: target/release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ jobs:
echo "TAG_NAME=$TAG_NAME" >> "$GITHUB_ENV"

- name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: DEBUG
shell: bash
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/runtime-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,13 +319,13 @@ jobs:
- uses: actions/checkout@v4

- name: Download creditcoin-node from current PR
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-node
path: target/release

- name: Download creditcoin-fork.json
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-fork.json

Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:

- name: Download WASM runtime from current PR
id: download-wasm
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin_node_runtime.compact.compressed.wasm

Expand Down Expand Up @@ -435,7 +435,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download creditcoin-node from current PR
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-node
path: target/release
Expand Down Expand Up @@ -511,7 +511,7 @@ jobs:

- name: Download WASM runtime
id: download-wasm
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin_node_runtime.compact.compressed.wasm

Expand Down Expand Up @@ -634,13 +634,13 @@ jobs:
- uses: actions/checkout@v4

- name: Download creditcoin-node binary from current PR
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin-node
path: target/release

- name: Download WASM runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: creditcoin_node_runtime.compact.compressed.wasm
path: target/release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
if: github.ref == 'refs/heads/dev'
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: creditcoin-runtime-${{ github.sha }}
path: wasm
Expand Down
Loading