From 7fa7c3519441293b2b537ae79089449f07fa306e Mon Sep 17 00:00:00 2001 From: CloudQuery Bot Date: Sun, 1 Mar 2026 03:09:09 +0000 Subject: [PATCH] chore(deps): Update actions/cache action to v5 --- .github/workflows/gen_coverage_report.yml | 2 +- .github/workflows/go_mod_tidy_examples.yml | 2 +- .github/workflows/lint_golang.yml | 2 +- .github/workflows/unittest.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gen_coverage_report.yml b/.github/workflows/gen_coverage_report.yml index 4608ada52f..8f8c492193 100644 --- a/.github/workflows/gen_coverage_report.yml +++ b/.github/workflows/gen_coverage_report.yml @@ -28,7 +28,7 @@ jobs: go-version: "1.25" cache: false - name: Cache Go modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod diff --git a/.github/workflows/go_mod_tidy_examples.yml b/.github/workflows/go_mod_tidy_examples.yml index b5a15e2c0e..2bfd4b1aa5 100644 --- a/.github/workflows/go_mod_tidy_examples.yml +++ b/.github/workflows/go_mod_tidy_examples.yml @@ -27,7 +27,7 @@ jobs: go-version-file: go.mod cache: false - name: Cache Go modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod diff --git a/.github/workflows/lint_golang.yml b/.github/workflows/lint_golang.yml index ef096cb302..251e88f7f0 100644 --- a/.github/workflows/lint_golang.yml +++ b/.github/workflows/lint_golang.yml @@ -23,7 +23,7 @@ jobs: go-version-file: go.mod cache: false - name: Cache Go modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 93a635fb45..e71204e291 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -33,7 +33,7 @@ jobs: echo "gocache=$(go env GOCACHE)" >> "$GITHUB_OUTPUT" echo "gomodcache=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT" - name: Cache Go modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ${{ steps.go-cache.outputs.gomodcache }}