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
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ jobs:
run: mkdir -p target/release

- name: Download Benchmark Binary
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: benchmark-binary
path: target/release

- name: Download WASM Build Artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: wasm-artifacts
path: target/release/wbuild
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ jobs:
run: mkdir -p target/release

- name: Download Benchmark Binary
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: benchmark-binary
path: target/release

- name: Download WASM Build Artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: wasm-artifacts
path: target/release/wbuild
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
working-directory: js/api-augment
- name: Download Binaries
id: download-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-binary-${{env.NETWORK}}-amd64-${{github.run_id}}
path: .
Expand Down Expand Up @@ -588,7 +588,7 @@ jobs:
fetch-depth: 0
- name: Download Binaries
id: download-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-binary-${{matrix.network}}-${{matrix.arch}}-${{github.run_id}}
path: .
Expand Down Expand Up @@ -651,7 +651,7 @@ jobs:
out-file-path: ${{env.REF_DOWNLOAD_DIR}}
- name: Download Test Binary
id: download-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-binary-local-amd64-${{github.run_id}}
path: ${{env.TEST_DOWNLOAD_DIR}}
Expand Down Expand Up @@ -857,14 +857,14 @@ jobs:
run: echo "version=$(rustc --version | cut -f 2 -d " ")" >> $GITHUB_OUTPUT
- name: Download Artifacts
id: download
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-*-${{github.run_id}}
path: /tmp
merge-multiple: true
- name: Download api-augment artifacts
id: download-js
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: js-api-augment-${{github.run_id}}
path: /tmp/polkadot-api-types-json
Expand Down Expand Up @@ -991,14 +991,14 @@ jobs:
# Download binaries for each architecture
- name: Download amd64 Binary
id: download-amd64
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-binary-${{matrix.network}}-amd64-${{github.run_id}}
path: ./binaries-amd64

- name: Download arm64 Binary
id: download-arm64
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-binary-${{matrix.network}}-arm64-${{github.run_id}}
path: ./binaries-arm64
Expand Down Expand Up @@ -1108,14 +1108,14 @@ jobs:
# Download binaries for each architecture
- name: Download amd64 Binary
id: download-amd64
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-binary-${{matrix.network}}-amd64-${{github.run_id}}
path: ./binaries-amd64

- name: Download arm64 Binary
id: download-arm64
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-binary-${{matrix.network}}-arm64-${{github.run_id}}
path: ./binaries-arm64
Expand Down Expand Up @@ -1234,7 +1234,7 @@ jobs:
cache-dependency-path: js/api-augment/package-lock.json
- name: Download Dist Dir
id: download
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: js-api-augment-${{github.run_id}}
path: js/api-augment/dist
Expand Down Expand Up @@ -1278,7 +1278,7 @@ jobs:
cache-dependency-path: js/ethereum-utils/package-lock.json
- name: Download Dist Dir
id: download
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: js-ethereum-utils-${{github.run_id}}
path: js/ethereum-utils/dist
Expand Down Expand Up @@ -1322,7 +1322,7 @@ jobs:
cache-dependency-path: js/schemas/package-lock.json
- name: Download Dist Dir
id: download
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: js-schemas-${{github.run_id}}
path: js/schemas/dist
Expand Down Expand Up @@ -1366,7 +1366,7 @@ jobs:
cache-dependency-path: js/recovery-sdk/package-lock.json
- name: Download Dist Dir
id: download
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: js-recovery-sdk-${{github.run_id}}
path: js/recovery-sdk/dist
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/verify-pr-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ jobs:
working-directory: js/api-augment
- name: Download Binaries
id: download-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-binary-local-amd64-pr-${{github.run_id}}
path: ${{env.BIN_DIR_DEBUG}}
Expand Down Expand Up @@ -606,15 +606,15 @@ jobs:

- name: Download amd64 Binaries
id: download-amd64-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-binary-mainnet-amd64-pr-${{github.run_id}}
path: ./binaries-amd64

# For PR verification, just use the mainnet arm64 build
- name: Download arm64 Binary
id: download-arm64
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-binary-mainnet-arm64-pr-${{github.run_id}}
path: ./binaries-arm64
Expand Down Expand Up @@ -724,7 +724,7 @@ jobs:
echo "TEST_BIN_FILENAME=frequency.mainnet.${{matrix.arch}}.frequency.pr" >> $GITHUB_ENV
- name: Download Binaries
id: download-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-binary-mainnet-${{matrix.arch}}-pr-${{github.run_id}}
path: ${{matrix.bin-dir}}
Expand Down Expand Up @@ -760,7 +760,7 @@ jobs:
echo "REF_BIN_FILENAME=frequency.local.amd64.frequency-local.main" >> $GITHUB_ENV
- name: Download Binaries
id: download-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-binary-local-*-${{github.run_id}}
path: ${{env.BIN_DIR_DEBUG}}
Expand Down Expand Up @@ -841,7 +841,7 @@ jobs:
echo "FREQUENCY_PROCESS_NAME=frequency" >> $GITHUB_ENV
- name: Download Binaries
id: download-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-binary-dev-amd64-pr-${{github.run_id}}
path: ${{env.BIN_DIR_DEBUG}}
Expand All @@ -851,17 +851,17 @@ jobs:
echo "Download dir: $download_dir"
echo "Downloaded binaries: $(ls -l $download_dir)"
- name: Download api-augment tarball
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-api-augment-${{github.run_id}}
path: js/api-augment/dist
- name: Download ethereum-utils tarball
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-ethereum-utils-${{github.run_id}}
path: js/ethereum-utils/dist
- name: Download recovery-sdk tarball
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: artifacts-recovery-sdk-${{github.run_id}}
path: js/recovery-sdk/dist
Expand Down Expand Up @@ -930,7 +930,7 @@ jobs:
echo "BIN_FILENAME_MAINNET=frequency.mainnet.amd64.frequency.pr" >> $GITHUB_ENV
- name: Download Binaries
id: download-binaries
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: artifacts-binary-*-${{github.run_id}}
path: ${{env.BIN_DIR_DEBUG}}
Expand Down