From e2b25cd0e6914ace206f637106daaab9484130c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 08:29:28 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5.0.4 to 5.0.5 in the ci group Bumps the ci group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 5.0.4 to 5.0.5 - [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/668228422ae6a00e4ad889ee87cd7109ec5666a7...27d5ce7f107fe9357f9df03efb73ab90386fccae) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch 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 ede17fa61f..4b285a6bdf 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ada7a0adab..e5f14a74e3 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/components.yaml b/.github/workflows/components.yaml index 7abb930cee..21d60b854f 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/lint_and_test.yaml b/.github/workflows/lint_and_test.yaml index d64d1e059f..c27396379f 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ env.go_cache }} @@ -61,7 +61,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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ env.go_cache }} @@ -95,7 +95,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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/publish-latest.yaml b/.github/workflows/publish-latest.yaml index 79b550bbdf..2321c3f365 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ env.go_cache }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 20654aa88f..b5a7fea574 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ env.go_cache }}