From a5ce830e3a0c300cd6d968b1b0003652c88189ba Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 20:20:36 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/build.yml | 2 +- .github/workflows/gofmt.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 43058ba..e43e570 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.head_ref }} - - uses: actions/cache@v2.1.8 + - uses: actions/cache@v4.0.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/gofmt.yml b/.github/workflows/gofmt.yml index afe5a99..81c536d 100644 --- a/.github/workflows/gofmt.yml +++ b/.github/workflows/gofmt.yml @@ -31,7 +31,7 @@ jobs: go-version: ${{ matrix.go-version }} - name: "get golang version" run: echo "::set-env name=golang-version::$(go version)" - - uses: actions/cache@v2.1.8 + - uses: actions/cache@v4.0.2 with: path: ~/go key: ${{ runner.os }}-go-${{ env.golang-version }}