From 798a16f3b5c23356cdf7d9e5c2be03fe94800a84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Dec 2022 05:03:15 +0000 Subject: [PATCH] build(deps): Bump actions/cache from 2.1.6 to 3.2.2 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.2. - [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.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yaml | 2 +- .github/workflows/workflow.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1a31378..4cfc235 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -31,7 +31,7 @@ jobs: with: go-version: ${{ env.GOLANG_VERSION }} - name: Setup build cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 4909f8a..7963b03 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -21,7 +21,7 @@ jobs: with: go-version: ${{ env.GOLANG_VERSION }} - name: Setup build cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -40,7 +40,7 @@ jobs: with: go-version: ${{ env.GOLANG_VERSION }} - name: Setup build cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -62,7 +62,7 @@ jobs: with: go-version: ${{ env.GOLANG_VERSION }} - name: Setup build cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -82,7 +82,7 @@ jobs: with: go-version: ${{ env.GOLANG_VERSION }} - name: Setup build cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -90,7 +90,7 @@ jobs: - name: Run benchmark run: go test ./... -bench 'Benchmark' | tee output.txt - name: Download previous benchmark data - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: ./cache key: ${{ runner.os }}-benchmark