From 32c46e901551763b39d4740c68e123d107118fc6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 08:13:02 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4.3.0 to 5.0.0 in the ci group Bumps the ci group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 4.3.0 to 5.0.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/0057852bfaa89a56745cba8c7296529d2fc39830...a7833574556fa59680c1b7cb190c1735db73ebf0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci ... Signed-off-by: dependabot[bot] --- .github/workflows/check_diff_action.yaml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/components.yaml | 2 +- .github/workflows/lint_and_test.yaml | 6 +++--- .github/workflows/publish-latest.yaml | 6 +++--- .github/workflows/release.yaml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/check_diff_action.yaml b/.github/workflows/check_diff_action.yaml index 342e315ef..90ca63050 100644 --- a/.github/workflows/check_diff_action.yaml +++ b/.github/workflows/check_diff_action.yaml @@ -34,7 +34,7 @@ jobs: - name: Restore / Reuse Cache from central build id: cache-golang-restore # Only Restore, not build another cache (too big) - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1cb36735f..5ee6111d3 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -87,7 +87,7 @@ jobs: if: matrix.build-mode == 'manual' id: cache-golang-restore # Only Restore, not build another cache (too big) - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/components.yaml b/.github/workflows/components.yaml index 3a26b944d..68a6dc99e 100644 --- a/.github/workflows/components.yaml +++ b/.github/workflows/components.yaml @@ -88,7 +88,7 @@ jobs: - name: Restore / Reuse Cache from central build id: cache-golang-restore # Only Restore, not build another cache (too big) - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/lint_and_test.yaml b/.github/workflows/lint_and_test.yaml index a036eb002..2b231e8be 100644 --- a/.github/workflows/lint_and_test.yaml +++ b/.github/workflows/lint_and_test.yaml @@ -39,7 +39,7 @@ jobs: - name: Restore / Reuse Cache from central build id: cache-golang-restore # Only Restore, not build another cache (too big) - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }} @@ -59,7 +59,7 @@ jobs: id: cache-golang-save if: github.ref == 'refs/heads/main' # Only run on main, never in PR # Only saves cache build-test (linux-amd64) - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/save@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }} @@ -93,7 +93,7 @@ jobs: - name: Restore / Reuse Cache from central build id: cache-golang-restore # Only Restore, not build another cache (too big) - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/publish-latest.yaml b/.github/workflows/publish-latest.yaml index d4dd3f833..167d5668e 100644 --- a/.github/workflows/publish-latest.yaml +++ b/.github/workflows/publish-latest.yaml @@ -48,7 +48,7 @@ jobs: images: | ghcr.io/${{ github.repository }} - name: Go Build Cache for Docker - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: go-build-cache key: ${{ runner.os }}-go-build-cache-${{ hashFiles('**/go.sum') }} @@ -116,7 +116,7 @@ jobs: - name: Restore / Reuse Cache from central build id: cache-golang-restore # Only Restore, not build another cache (too big) - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }} @@ -160,7 +160,7 @@ jobs: - name: Save Cache of Build (only on main) id: cache-golang-save # Only save build cache once - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/save@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2fd047c60..68df94970 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -160,7 +160,7 @@ jobs: - name: Restore / Reuse Cache from central build id: cache-golang-restore # Only Restore, not build another cache (too big) - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ env.go_cache }}