From b4184446a81efec1cc864799558dccd60f90f5bd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:38:35 +0000 Subject: [PATCH] Update actions/cache action to v5 --- .github/workflows/build.yml | 4 ++-- .github/workflows/coverage.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 54e3684..df45a09 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }} @@ -57,7 +57,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4924803..4f9eaf9 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -31,7 +31,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }}