From 339747047e50ff70f51b84cfe00a745894778bbf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 01:52:47 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/example.yml | 2 +- .github/workflows/jest.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 413ccc6..c1fc1c0 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -69,7 +69,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ env.EM_CACHE_FOLDER }} key: example-em-cache-${{ runner.os }}-${{ matrix.node-version }} diff --git a/.github/workflows/jest.yml b/.github/workflows/jest.yml index ec074b0..e267f8a 100644 --- a/.github/workflows/jest.yml +++ b/.github/workflows/jest.yml @@ -27,7 +27,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ env.EM_CACHE_FOLDER }} key: jest-em-cache-${{ runner.os }}-${{ matrix.node-version }} @@ -65,7 +65,7 @@ jobs: node-version: ${{ env.NODE_LATEST_VERSION }} cache: 'npm' - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ env.EM_CACHE_FOLDER }} key: jest-em-cache-${{ runner.os }}-${{ env.NODE_LATEST_VERSION }}