From fd6a74635f34bb9ff2d8e54a8dfc85ed54de1dd9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 08:30:49 -0700 Subject: [PATCH] Bump actions/cache from 4 to 5 (#312122) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/chat-perf.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/chat-perf.yml b/.github/workflows/chat-perf.yml index 52e7db5c73d..26744376083 100644 --- a/.github/workflows/chat-perf.yml +++ b/.github/workflows/chat-perf.yml @@ -130,7 +130,7 @@ jobs: run: node build/lib/preLaunch.ts - name: Cache Electron - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ~/.cache/electron key: electron-${{ runner.os }}-${{ hashFiles('.nvmrc', 'package.json') }} @@ -139,7 +139,7 @@ jobs: run: npx playwright install chromium - name: Cache Playwright - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ~/.cache/ms-playwright key: playwright-${{ runner.os }}-${{ hashFiles('package.json') }} @@ -220,7 +220,7 @@ jobs: name: build-output - name: Restore Electron cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.cache/electron key: electron-${{ runner.os }}-${{ hashFiles('.nvmrc', 'package.json') }} @@ -229,7 +229,7 @@ jobs: run: node build/lib/preLaunch.ts - name: Restore Playwright cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.cache/ms-playwright key: playwright-${{ runner.os }}-${{ hashFiles('package.json') }} @@ -393,7 +393,7 @@ jobs: name: build-output - name: Restore Electron cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.cache/electron key: electron-${{ runner.os }}-${{ hashFiles('.nvmrc', 'package.json') }} @@ -402,7 +402,7 @@ jobs: run: node build/lib/preLaunch.ts - name: Restore Playwright cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.cache/ms-playwright key: playwright-${{ runner.os }}-${{ hashFiles('package.json') }}