From cdb35a9f19b48b10e1917c04e2a87a061d9cb482 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 07:49:22 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .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 9801673..290f81a 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@v3 - name: Cache Go module - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -80,7 +80,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v3 - name: Cache Go module - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}