From 889b035cf2c59d6b9ef60e29a2a421f982f5309b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 09:28:24 +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-windows.yaml | 4 ++-- .github/workflows/lint-and-test.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-windows.yaml b/.github/workflows/build-windows.yaml index 711c05d5..5398671e 100644 --- a/.github/workflows/build-windows.yaml +++ b/.github/workflows/build-windows.yaml @@ -30,7 +30,7 @@ jobs: run: corepack enable - name: Cache node_modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | .yarn/cache @@ -44,7 +44,7 @@ jobs: CI: true - name: Cache pkg/electron binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: key: ${{ runner.os }}-natives-${{ hashFiles('node_modules/**/expected-shas.json') }}-${{ hashFiles('node_modules/**/electron/package.json') }} path: | diff --git a/.github/workflows/lint-and-test.yaml b/.github/workflows/lint-and-test.yaml index 93acbc0c..4e95c887 100644 --- a/.github/workflows/lint-and-test.yaml +++ b/.github/workflows/lint-and-test.yaml @@ -30,7 +30,7 @@ jobs: run: corepack enable - name: Cache node_modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | .yarn/cache @@ -73,7 +73,7 @@ jobs: node-version: ${{ matrix.node_version }} - name: Cache node_modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | .yarn/cache @@ -82,7 +82,7 @@ jobs: key: ${{ runner.os }}-${{ matrix.node_version }}-modules-${{ hashFiles('**/yarn.lock') }} - name: Cache ffmpeg binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: '.ffmpeg' key: ${{ runner.os }}-ffmpeg-${{ hashFiles('**/ffmpegReleases.json') }}