Skip to content

Commit

Permalink
Chore(CI): Update checkout to v3 (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuajbouw authored Aug 8, 2022
1 parent f90e424 commit ee89793
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- run: cargo make engine-release
- run: ls -lH bin/mainnet-release.wasm
- name: Upload the mainnet-release.wasm artifact
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- run: cargo make engine-debug
- run: ls -lH mainnet-debug.wasm
- name: Upload the mainnet-debug.wasm artifact
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- run: cargo make engine-test
- run: ls -lH mainnet-test.wasm
- name: Upload the mainnet-test.wasm artifact
Expand All @@ -76,7 +76,7 @@ jobs:
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- run: cargo make engine-bully
- run: ls -lH mainnet-bully.wasm
- name: Upload the mainnet-bully.wasm artifact
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
runs-on: [self-hosted, light]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run cargo fmt
run: cargo make check-fmt
clippy:
name: Clippy
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- run: cargo make build-contracts
- name: Run Contract cargo clippy
run: cargo make clippy
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: [self-hosted, light]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run yarn lint
run: cargo make check-contracts
- name: Check committed EvmErc20.bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled_lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- run: make etc/eth-contracts/res/EvmErc20.bin
- name: Update toolchain
run: rustup update nightly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Restore cache
run: |
cache-util restore cargo_git cargo_registry sccache yarn_cache
Expand Down

0 comments on commit ee89793

Please sign in to comment.