From 733d50d0ab4be72e4f78b18a0d7499f60e8597f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Sep 2023 01:55:17 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/rosetta-cli-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rosetta-cli-test.yaml b/.github/workflows/rosetta-cli-test.yaml index 49a2692..8a24c1b 100644 --- a/.github/workflows/rosetta-cli-test.yaml +++ b/.github/workflows/rosetta-cli-test.yaml @@ -19,7 +19,7 @@ jobs: with: go-version: '^1.21.1' - name: Get cosmos-sdk repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: cosmos/cosmos-sdk ref: main @@ -30,7 +30,7 @@ jobs: - name: Check blockchain status run: curl localhost:26657/status - name: Checkout back to rosetta - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build Rosetta run: go mod tidy && make rosetta && make plugin - name: Run Rosetta service