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
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
with:
swap-size-gb: 8
- name: Fetch latest code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup build environment
run: sudo apt install -y clang llvm protobuf-compiler
- name: Cache cargo
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch latest code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install nightly Rust
run: rustup toolchain install nightly && rustup component add rustfmt --toolchain nightly
- name: Check format
Expand All @@ -114,7 +114,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch latest code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Check
uses: hack-ink/[email protected]
with:
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
with:
node-version: 19
- name: Fetch latest code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Action test
run: |
cd tests/ethereum
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
with:
swap-size-gb: 8
- name: Fetch latest code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Build node
uses: ./.github/actions/build
with:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
runtime: [darwinia, crab]
steps:
- name: Fetch latest code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup gomplate
run: |
curl -LO ${{ env.GOMPLATE_URL }}/${{ env.GOMPLATE_VERSION }}/${{ env.GOMPLATE }}
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
needs: [build-nodes]
steps:
- name: Fetch Dockerfile
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download node
uses: actions/download-artifact@v4
- name: Extract node
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
needs: [build-nodes, build-runtimes, publish-docker-image]
steps:
- name: Fetch note template
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download nodes and runtimes
uses: actions/download-artifact@v4
- name: Prepare nodes and runtimes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
swap-size-gb: 8
- name: Fetch latest code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Build node
uses: ./.github/actions/build
with:
Expand All @@ -57,7 +57,7 @@ jobs:
needs: [build-node]
steps:
- name: Fetch Dockerfile
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download node
uses: actions/download-artifact@v4
- name: Extract node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/try-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uri: ws://g1.crab2.darwinia.network:9944
steps:
- name: Fetch latest code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.issue.number }}/head
- name: Try-Runtime
Expand Down