From b4f872b1400d552eded90a113ffc2999ce708281 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 11:05:08 +0000 Subject: [PATCH] ci: 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/ci.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6cb988c..b029212 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: # Cache node_modules to speed up the process - name: "Restore node_modules cache" id: cache-npm - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: npm-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index a7f8d16..25bbb76 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -28,7 +28,7 @@ jobs: # Cache node_modules to speed up the process - name: "Restore node_modules cache" id: cache-npm - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: npm-${{ hashFiles('**/package-lock.json') }}