Skip to content

Commit

Permalink
Update to node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanp413 committed Mar 30, 2022
1 parent 61080f6 commit bb21e32
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/insiders-gp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Sync with upstream (rebase)
run: |
Expand All @@ -61,8 +61,8 @@ jobs:
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-cacheNodeModules21-${{ steps.nodeModulesCacheKey.outputs.value }}
restore-keys: ${{ runner.os }}-cacheNodeModules21-
key: ${{ runner.os }}-cacheNodeModules22-${{ steps.nodeModulesCacheKey.outputs.value }}
restore-keys: ${{ runner.os }}-cacheNodeModules22-
- name: Get yarn cache directory path
id: yarnCacheDirPath
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Sync with upstream (rebase)
run: |
Expand All @@ -61,8 +61,8 @@ jobs:
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-cacheNodeModules21-${{ steps.nodeModulesCacheKey.outputs.value }}
restore-keys: ${{ runner.os }}-cacheNodeModules21-
key: ${{ runner.os }}-cacheNodeModules22-${{ steps.nodeModulesCacheKey.outputs.value }}
restore-keys: ${{ runner.os }}-cacheNodeModules22-
- name: Get yarn cache directory path
id: yarnCacheDirPath
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Install Yarn
run: npm install -g yarn
Expand All @@ -121,8 +121,8 @@ jobs:
uses: actions/cache@v2
with:
path: "openvscode-server/**/node_modules"
key: linux-${{ matrix.npm_arch }}-cacheNodeModules21-${{ steps.nodeModulesCacheKey.outputs.value }}
restore-keys: linux-${{ matrix.npm_arch }}-cacheNodeModules21-
key: linux-${{ matrix.npm_arch }}-cacheNodeModules22-${{ steps.nodeModulesCacheKey.outputs.value }}
restore-keys: linux-${{ matrix.npm_arch }}-cacheNodeModules22-
- name: Get yarn cache directory path
working-directory: ./openvscode-server
id: yarnCacheDirPath
Expand Down

0 comments on commit bb21e32

Please sign in to comment.