From 40f568d5dea08ed693d7f553e70a23e6a3d63875 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 06:41:58 +0000 Subject: [PATCH] Bump actions/cache from 5.0.4 to 5.0.5 Bumps [actions/cache](https://github.com/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/v5.0.4...v5.0.5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build-ratis.yml | 2 +- .github/workflows/check.yml | 4 ++-- .github/workflows/ci.yml | 2 +- .github/workflows/intermittent-test-check.yml | 4 ++-- .github/workflows/populate-cache.yml | 6 +++--- .github/workflows/repeat-acceptance.yml | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-ratis.yml b/.github/workflows/build-ratis.yml index f780789e482..6fee85f7388 100644 --- a/.github/workflows/build-ratis.yml +++ b/.github/workflows/build-ratis.yml @@ -70,7 +70,7 @@ jobs: repository: ${{ inputs.repo }} ref: ${{ inputs.ref }} - name: Cache for maven dependencies - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: | ~/.m2/repository diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a5f9140fac8..071fca9eb39 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -164,7 +164,7 @@ jobs: - name: Cache for NPM dependencies if: ${{ inputs.needs-npm-cache }} - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: | ~/.pnpm-store @@ -174,7 +174,7 @@ jobs: - name: Cache for Maven dependencies if: ${{ inputs.needs-maven-cache }} - uses: actions/cache/restore@v5.0.4 + uses: actions/cache/restore@v5.0.5 with: path: | ~/.m2/repository/*/*/* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dccc5e43d2b..a33c47b85d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -338,7 +338,7 @@ jobs: fetch-depth: 0 ref: ${{ needs.build-info.outputs.sha }} - name: Cache for maven dependencies - uses: actions/cache/restore@v5.0.4 + uses: actions/cache/restore@v5.0.5 with: path: | ~/.m2/repository/*/*/* diff --git a/.github/workflows/intermittent-test-check.yml b/.github/workflows/intermittent-test-check.yml index ffcccc3e578..8b467ac8a19 100644 --- a/.github/workflows/intermittent-test-check.yml +++ b/.github/workflows/intermittent-test-check.yml @@ -109,7 +109,7 @@ jobs: with: ref: ${{ github.event.inputs.ref }} - name: Cache for maven dependencies - uses: actions/cache/restore@v5.0.4 + uses: actions/cache/restore@v5.0.5 with: path: | ~/.m2/repository/*/*/* @@ -167,7 +167,7 @@ jobs: with: ref: ${{ github.event.inputs.ref }} - name: Cache for maven dependencies - uses: actions/cache/restore@v5.0.4 + uses: actions/cache/restore@v5.0.5 with: path: | ~/.m2/repository/*/*/* diff --git a/.github/workflows/populate-cache.yml b/.github/workflows/populate-cache.yml index dead3fb149e..f217795385f 100644 --- a/.github/workflows/populate-cache.yml +++ b/.github/workflows/populate-cache.yml @@ -38,7 +38,7 @@ jobs: - name: Restore cache for Maven dependencies id: restore-cache - uses: actions/cache/restore@v5.0.4 + uses: actions/cache/restore@v5.0.5 with: path: | ~/.m2/repository/*/*/* @@ -60,7 +60,7 @@ jobs: - name: Restore NodeJS tarballs id: restore-nodejs if: steps.restore-cache.outputs.cache-hit != 'true' - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: ~/.m2/repository/com/github/eirslett/node key: nodejs-${{ steps.nodejs-version.outputs.nodejs-version }} @@ -85,7 +85,7 @@ jobs: - name: Save cache for Maven dependencies if: steps.restore-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v5.0.4 + uses: actions/cache/save@v5.0.5 with: path: | ~/.m2/repository/*/*/* diff --git a/.github/workflows/repeat-acceptance.yml b/.github/workflows/repeat-acceptance.yml index 8b1c0dc7b7f..99bbe36119e 100644 --- a/.github/workflows/repeat-acceptance.yml +++ b/.github/workflows/repeat-acceptance.yml @@ -85,7 +85,7 @@ jobs: with: ref: ${{ github.event.inputs.ref }} - name: Cache for npm dependencies - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: | ~/.pnpm-store @@ -94,7 +94,7 @@ jobs: restore-keys: | ${{ runner.os }}-pnpm- - name: Cache for maven dependencies - uses: actions/cache/restore@v5.0.4 + uses: actions/cache/restore@v5.0.5 with: path: | ~/.m2/repository/*/*/*