From f22830c400ddfe7f4d037a972636f85cb32f62d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 01:03:04 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 in the dependencies group Bumps the dependencies group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/eslint.yml | 2 +- .github/workflows/playwright.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index e2d846e..874a9df 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -28,7 +28,7 @@ jobs: id: npm-cache run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Cache npm dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }} path: ${{ steps.npm-cache.outputs.dir }} diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 25bce47..c40a986 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -25,7 +25,7 @@ jobs: id: npm-cache run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Cache npm dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }} path: ${{ steps.npm-cache.outputs.dir }}