From 5c51606226a8e897cf85041bf36ecf175fc45be3 Mon Sep 17 00:00:00 2001 From: Masanori Yoshida Date: Tue, 9 Apr 2024 13:16:29 +0900 Subject: [PATCH] update the github actions used in CI Signed-off-by: Masanori Yoshida --- .github/workflows/test.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 686a8197..6ee27d4e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: | @@ -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: @@ -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: @@ -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/**') }}