Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ jobs:
cache: 'pnpm'

- name: Cache pnpm store
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.pnpm-store
key: pnpm-${{ matrix.platform }}-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: pnpm-${{ matrix.platform }}-

- name: Cache Electron downloads
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ env.ELECTRON_CACHE }}
key: electron-v3-${{ matrix.platform }}-${{ hashFiles('apps/desktop/package.json') }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Cache node_modules
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: |
node_modules
Expand All @@ -64,7 +64,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Restore node_modules
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
node_modules
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Restore node_modules
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
node_modules
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Restore node_modules
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
node_modules
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Restore node_modules
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
node_modules
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Restore node_modules
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
node_modules
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Restore node_modules
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
node_modules
Expand Down
Loading