From 9ba2607083c6310a761c5405ead4e9960287f5c1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 23:02:16 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v6 --- .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 16a1236..a0ba9a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: cache-dependency-path: 'package-lock.json' - name: Setup cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: node_modules key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -70,7 +70,7 @@ jobs: cache-dependency-path: 'package-lock.json' - name: Setup cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: node_modules key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -83,7 +83,7 @@ jobs: fi - name: Cache Electron binaries - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ env.ELECTRON_CACHE }} key: ${{ runner.os }}-electron-${{ hashFiles('package-lock.json') }} @@ -125,7 +125,7 @@ jobs: run: npm install - name: Cache Electron binaries - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ env.ELECTRON_CACHE }} key: ${{ runner.os }}-electron-${{ hashFiles('package-lock.json') }}