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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ jobs:
cache: 'npm'
node-version-file: '.nvmrc'
- name: Cache electron prebuilt binary
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
with:
path: .cache/electron
key: ${{ runner.os }}-electron-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-electron-
- name: Cache electron-builder tools
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
with:
path: .cache/electron-builder
key: ${{ runner.os }}-electron-builder-${{ hashFiles('package-lock.json') }}
Expand All @@ -78,7 +78,7 @@ jobs:
# placed it under node_modules), not on the project's package-lock.json.
# The asset set is determined entirely by the scratch-gui version;
# unrelated dep bumps shouldn't bust this cache.
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
with:
path: static/fetched
key: media-${{ hashFiles('node_modules/@scratch/scratch-gui/package.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ jobs:
cache: 'npm'
node-version-file: '.nvmrc'
- name: Cache electron prebuilt binary
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
with:
path: .cache/electron
key: ${{ runner.os }}-electron-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-electron-
- name: Cache electron-builder tools
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
with:
path: .cache/electron-builder
key: ${{ runner.os }}-electron-builder-${{ hashFiles('package-lock.json') }}
Expand All @@ -112,7 +112,7 @@ jobs:
# placed it under node_modules), not on the project's package-lock.json.
# The asset set is determined entirely by the scratch-gui version;
# unrelated dep bumps shouldn't bust this cache.
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
with:
path: static/fetched
key: media-${{ hashFiles('node_modules/@scratch/scratch-gui/package.json') }}
Expand Down
Loading