From 4c59a6fc63a18d468066aa3c50159825fa149172 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 06:43:14 +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/ci.yml | 10 +++++----- .github/workflows/field-test.yml | 4 ++-- .github/workflows/playwright.yml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d6567c..1db81d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/setup-node@v6 with: node-version: "24" - - uses: actions/cache@v5 + - uses: actions/cache@v6 id: node_modules_cache with: path: "node_modules" @@ -29,7 +29,7 @@ jobs: - uses: actions/setup-node@v6 with: node-version: "24" - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: "node_modules" key: node_modules-${{ hashFiles('package-lock.json') }} @@ -45,7 +45,7 @@ jobs: - uses: actions/setup-node@v6 with: node-version: "24" - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: "node_modules" key: node_modules-${{ hashFiles('package-lock.json') }} @@ -61,7 +61,7 @@ jobs: - uses: actions/setup-node@v6 with: node-version: "24" - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: "node_modules" key: node_modules-${{ hashFiles('package-lock.json') }} @@ -77,7 +77,7 @@ jobs: - uses: actions/setup-node@v6 with: node-version: "24" - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: "node_modules" key: node_modules-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/field-test.yml b/.github/workflows/field-test.yml index 1e2547c..35fb6cb 100644 --- a/.github/workflows/field-test.yml +++ b/.github/workflows/field-test.yml @@ -6,7 +6,7 @@ jobs: steps: - uses: actions/checkout@v6 - uses: actions/setup-node@v6 - - uses: actions/cache@v5 + - uses: actions/cache@v6 id: node_modules_cache with: path: "node_modules" @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@v6 - uses: actions/setup-node@v6 - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: "node_modules" key: ${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 5bc16dd..0f2ee3c 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -16,11 +16,11 @@ jobs: - uses: actions/setup-node@v6 with: node-version: "24" - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: "node_modules" key: node_modules-${{ hashFiles('package-lock.json') }} - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ${{ env.PROJECT }}${{ 'node_modules' }} key: ${{ env.PROJECT }}node_modules-${{ hashFiles('package-lock.json') }}