From 3a6ae0ee3e0f47e963a16d6a930f9758a6a278dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 09:18:22 +0000 Subject: [PATCH] ci(deps): 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 | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afec375..e5818a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: cache: 'npm' - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} @@ -91,7 +91,7 @@ jobs: cache: 'npm' - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} @@ -123,7 +123,7 @@ jobs: cache: 'npm' - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a8cf18..66f254e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }}