From db16983898356fea99f724342b878541386ded30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jan 2023 11:10:48 +0000 Subject: [PATCH] build(deps): Bump actions/cache from 2.1.6 to 3.2.3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2.1.6...v3.2.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 14d531812e8..a9e00b992a8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,7 @@ jobs: - name: install run: make install install_abci if: "env.GIT_DIFF != ''" - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -36,7 +36,7 @@ jobs: ${{ runner.os }}-go- if: env.GIT_DIFF # Cache binaries for use by other jobs - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.3 with: path: ~/go/bin key: ${{ runner.os }}-${{ github.sha }}-tm-binary @@ -57,14 +57,14 @@ jobs: **/**.go go.mod go.sum - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- if: env.GIT_DIFF - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.3 with: path: ~/go/bin key: ${{ runner.os }}-${{ github.sha }}-tm-binary @@ -88,14 +88,14 @@ jobs: **/**.go go.mod go.sum - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- if: env.GIT_DIFF - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.3 with: path: ~/go/bin key: ${{ runner.os }}-${{ github.sha }}-tm-binary