From 0a775afd0e2054f6a9e35d1ab18127c6ede5efdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Dec 2025 04:06:40 +0000 Subject: [PATCH] chore(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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d6da07..b464990 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,7 +85,7 @@ jobs: run: npm ci --no-audit --no-fund - name: Cache ESLint - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .eslintcache key: eslint-${{ runner.os }}-${{ matrix.node }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('src/**/*.ts') }} @@ -99,7 +99,7 @@ jobs: run: npm run vscode:prepublish - name: Cache TS build info - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .tsbuildinfo key: tsc-${{ runner.os }}-${{ matrix.node }}-${{ hashFiles('tsconfig.json') }}-${{ hashFiles('src/**/*.ts') }} @@ -107,7 +107,7 @@ jobs: tsc-${{ runner.os }}-${{ matrix.node }}- - name: Cache VS Code Test Download - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .vscode-test key: vscode-test-${{ runner.os }}-${{ matrix.node }}-${{ env.VSCODE_VERSION }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }} @@ -210,7 +210,7 @@ jobs: run: npm run vscode:prepublish - name: Cache VS Code Test Download (reuse) - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .vscode-test key: vscode-test-${{ runner.os }}-20x-${{ env.VSCODE_VERSION }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}