From ef7e45b7fed8aa69bc8e5725fbceea9fdd378617 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:12:21 +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/macos.yml | 4 ++-- .github/workflows/ubuntu.yml | 4 ++-- .github/workflows/windows.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 65b9b7b45..53a01be00 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v7 - name: Cache Node modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: # npm cache files are stored in ~/.npm path: ~/.npm @@ -38,7 +38,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Electron binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/Library/Caches/electron diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 40ff3bef5..760b9df01 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v7 - name: Cache Node modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: # npm cache files are stored in ~/.npm path: ~/.npm @@ -39,7 +39,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Electron binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cache/electron diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bc9bff67f..e92c15a8f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v7 - name: Cache Node modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: # npm cache files are stored in ~/.npm path: ~/.npm @@ -39,7 +39,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Electron binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ${{ env.LOCALAPPDATA }}\electron\Cache