From de344f984b6c877dd9f2fc515cfccd964f2941bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 14:43:44 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-publish.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index ee3937d0..cc1fc27f 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -23,7 +23,7 @@ jobs: # Saves ~18 s on every commit that doesn't touch dependencies. - name: Cache node_modules id: nm-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: node-modules-${{ hashFiles('package-lock.json') }} @@ -73,7 +73,7 @@ jobs: - name: Cache node_modules id: nm-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: node-modules-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0dddfa41..697c297b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: - name: Cache node_modules id: nm-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: node-modules-${{ hashFiles('package-lock.json') }}