From b7ea316389dd294cbdead8644d1987d1c6c967fa Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 26 Mar 2022 12:31:09 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v3 --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4b3ce3f..24c835b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,7 +23,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Cache Go module - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -75,7 +75,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Cache Go module - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}