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

Chore(CI): Update checkout to version 3 #566

Merged
merged 1 commit into from
Aug 8, 2022
Merged
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/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