Skip to content

Commit

Permalink
Merge pull request #372 from PavelSheremetev/master
Browse files Browse the repository at this point in the history
Fix action dependencies
  • Loading branch information
PavelSheremetev authored Feb 13, 2025
2 parents 72b27a6 + 0ac7225 commit b91c21b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
id: artifact-name
run: echo "::set-output name=name::robonomics-ubuntu-latest-${TARGET%%-*}"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ steps.artifact-name.outputs.name }}
path: target/${{ matrix.target }}/release/robonomics
Expand All @@ -118,7 +118,7 @@ jobs:
- name: Build optimized binary
run: cargo build --release --verbose --locked

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: robonomics-macOS-latest-x86_64
path: target/release/robonomics
Expand Down Expand Up @@ -147,13 +147,13 @@ jobs:
tag-sha: true # add git short SHA as Docker tag

- name: Download pre-built amd64 linux collator binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: robonomics-ubuntu-latest-x86_64
path: scripts/docker/amd64/

- name: Download pre-built aarch64 linux collator binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: robonomics-ubuntu-latest-aarch64
path: scripts/docker/arm64/
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
# it takes a while to build the runtime, so let's save the artifact as soon as we have it
- name: Archive Artifacts for ${{ matrix.chain }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.chain }}-runtime
path: |
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
tee ${{ matrix.chain }}-diff.txt
- name: Archive Subwasm results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.chain }}-runtime
path: |
Expand All @@ -260,7 +260,7 @@ jobs:
fetch-depth: 0

- name: Download main runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: main-runtime
path: runtime-artifacts
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
mkdir -p ${{ matrix.os }}-${{ matrix.arch }}-bin
- name: Download pre-built collator binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: robonomics-${{ matrix.os }}-latest-${{ matrix.arch }}
path: ${{ matrix.os }}-${{ matrix.arch }}-bin
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
chain: ["main"]
steps:
- name: Download runtime
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.chain }}-runtime

Expand Down
2 changes: 1 addition & 1 deletion node/generic-runtime/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
// Copyright 2018-2024 Robonomics Network <research@robonomics.network>
//
Expand Down

0 comments on commit b91c21b

Please sign in to comment.