From c159359ae1d9e7faf890909f5c1b53d4ad7850df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Mar 2023 12:57:36 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.3.0 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.3.0. - [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.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/tests.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bea8cab45..0a4c72e8a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: with: path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }} fetch-depth: 0 - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.3.0 with: path: ${{ env.GOPATH }}/pkg/mod key: ${{ runner.os }}-go-${{ github.job }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0b9193b17..31596e259 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,7 +26,7 @@ jobs: uses: actions/checkout@v2 with: path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.3.0 with: path: ${{ env.GOPATH }}/pkg/mod key: ${{ runner.os }}-go-${{ github.job }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fce7b5fd8..2d667f8c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: with: path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }} fetch-depth: 0 - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.3.0 with: path: ${{ env.GOPATH }}/pkg/mod key: ${{ runner.os }}-go-${{ github.job }}-${{ matrix.arch }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 30edc1ebd..0bbb43ef4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }} fetch-depth: 0 submodules: true - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.3.0 with: path: ${{ env.GOPATH }}/pkg/mod key: ${{ runner.os }}-go-${{ matrix.test }}