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
2 changes: 1 addition & 1 deletion .github/workflows/cli-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Cache CLI node_modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: extensions/cli/node_modules
key: ${{ runner.os }}-node${{ matrix.node-version }}-cli-modules-${{ hashFiles('extensions/cli/package-lock.json') }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/jetbrains-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,19 +157,19 @@ jobs:
node-version-file: ".nvmrc"

- name: Cache core node_modules
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: core/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }}

- name: Cache binary node_modules
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: binary/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('binary/package-lock.json') }}

- name: Cache gui node_modules
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: gui/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }}
Expand Down Expand Up @@ -375,13 +375,13 @@ jobs:
node-version-file: ".nvmrc"

- name: Cache core node_modules
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: core/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }}

- name: Cache binary node_modules
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: binary/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('binary/package-lock.json') }}
Expand Down Expand Up @@ -528,7 +528,7 @@ jobs:

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
key: plugin-verifier-${{ hashFiles('build/printProductsReleases.txt') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
node-version-file: ".nvmrc"

- uses: actions/cache@v4
- uses: actions/cache@v5
id: root-cache
with:
path: node_modules
Expand Down Expand Up @@ -234,26 +234,26 @@ jobs:
node-version-file: ".nvmrc"

- name: Cache npm
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-matrix-${{ hashFiles('core/package-lock.json', 'extensions/vscode/package-lock.json') }}

- name: Cache packages node_modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
packages/*/node_modules
key: ${{ runner.os }}-packages-node-modules-${{ hashFiles('packages/*/package-lock.json') }}

- name: Cache core node modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: core/node_modules
key: ${{ runner.os }}-core-node-modules-${{ hashFiles('core/package-lock.json') }}

- name: Cache vscode extension node modules
uses: actions/cache@v4
uses: actions/cache@v5
id: vscode-cache
with:
path: extensions/vscode/node_modules
Expand Down
Loading