From 7d4e3b859b38e667b4285261e775ecc44db99033 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 17:19:16 +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..6b8023e 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.0 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..a89e74f 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.0 with: path: ~/go key: ${{ runner.os }}-go-${{ env.golang-version }}