diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 004b63ac8..500d199ee 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/lints.yml b/.github/workflows/lints.yml index b90a318fd..cc6b603db 100644 --- a/.github/workflows/lints.yml +++ b/.github/workflows/lints.yml @@ -13,7 +13,7 @@ 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: @@ -21,7 +21,7 @@ jobs: 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 @@ -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 diff --git a/.github/workflows/scheduled_lints.yml b/.github/workflows/scheduled_lints.yml index 82ab2a808..44c760f6e 100644 --- a/.github/workflows/scheduled_lints.yml +++ b/.github/workflows/scheduled_lints.yml @@ -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 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 131c9c8fb..e2d0c60ac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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