Skip to content

Commit

Permalink
update the github actions used in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Masanori Yoshida <[email protected]>
  • Loading branch information
siburu committed Apr 9, 2024
1 parent a4ed210 commit 5c51606
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
Expand All @@ -41,7 +41,7 @@ jobs:
name: tendermint-build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/cache@v3
id: cache-docker-tendermint
with:
Expand All @@ -65,7 +65,7 @@ jobs:
- relayer-build
- tendermint-build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Restore relayer binary cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -94,14 +94,14 @@ jobs:
- relayer-build
- tendermint-build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Restore relayer binary cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.CACHE_BIN_RELAYER_PATH }}
key: ${{ runner.os }}-${{ env.CACHE_BIN_RELAYER_KEY }}-${{ github.sha }}
- name: Restore Tendermint docker image cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.CACHE_DOCKER_TENDERMINT_DIR }}
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_TENDERMINT_KEY }}-${{ hashFiles('tests/chains/tendermint/**', '!**/.git/**') }}
Expand Down

0 comments on commit 5c51606

Please sign in to comment.