Skip to content

Commit

Permalink
build(deps): bump actions/download-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 1, 2024
1 parent 3a1bf6e commit 6e37587
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
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

0 comments on commit 6e37587

Please sign in to comment.