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

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #1349

Closed
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
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
tag-sha: true # add git short SHA as Docker tag

- name: Download pre-built linux collator binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: astar-ubuntu-latest-x86_64

Expand Down Expand Up @@ -324,19 +324,19 @@ jobs:
fetch-depth: 0

- name: Download astar runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: astar-runtime
path: runtime-artifacts

- name: Download shiden runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: shiden-runtime
path: runtime-artifacts

- name: Download shibuya runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: shibuya-runtime
path: runtime-artifacts
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
mkdir -p ubuntu-tracing-bin

- name: Download pre-built collator binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: astar-${{ matrix.os }}-latest-${{ matrix.arch }}
path: ${{ matrix.os }}-${{ matrix.arch }}-bin
Expand Down Expand Up @@ -419,7 +419,7 @@ jobs:
chain: ["astar", "shiden", "shibuya"]
steps:
- name: Download runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: ${{ matrix.chain }}-runtime

Expand Down Expand Up @@ -483,19 +483,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download evm tracing runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: astar-evm-tracing-runtime
path: evm-tracing-artifacts

- name: Download evm tracing runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: shiden-evm-tracing-runtime
path: evm-tracing-artifacts

- name: Download evm tracing runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: shibuya-evm-tracing-runtime
path: evm-tracing-artifacts
Expand Down Expand Up @@ -533,7 +533,7 @@ jobs:
uses: actions/checkout@v4

- name: Download pre-built collator binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: astar-ubuntu-latest-x86_64
path: target/release
Expand All @@ -555,7 +555,7 @@ jobs:
uses: actions/checkout@v4

- name: Download pre-built collator binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: astar-ubuntu-latest-x86_64
path: third-party/zombienet
Expand Down
Loading