fix: use node-v18.17 to generate all artifacts (#1689)
This commit is contained in:
parent
fa6fbaa4e0
commit
282e23dff0
5 changed files with 7 additions and 10 deletions
2
.github/workflows/insider-macos.yml
vendored
2
.github/workflows/insider-macos.yml
vendored
|
@ -53,7 +53,7 @@ jobs:
|
|||
- name: Setup Node.js environment
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
node-version: '18.17'
|
||||
|
||||
- name: Clone VSCode repo
|
||||
env:
|
||||
|
|
2
.github/workflows/insider-windows.yml
vendored
2
.github/workflows/insider-windows.yml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
|||
- name: Setup Node.js environment
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
node-version: '18.17'
|
||||
|
||||
- name: Install Yarn
|
||||
run: npm install -g yarn
|
||||
|
|
2
.github/workflows/stable-macos.yml
vendored
2
.github/workflows/stable-macos.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
|||
- name: Setup Node.js environment
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
node-version: '18.17'
|
||||
|
||||
- name: Clone VSCode repo
|
||||
run: . get_repo.sh
|
||||
|
|
7
.github/workflows/stable-windows.yml
vendored
7
.github/workflows/stable-windows.yml
vendored
|
@ -56,13 +56,10 @@ jobs:
|
|||
- name: Setup Node.js environment
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
node-version: '18.17'
|
||||
|
||||
- name: Install Yarn
|
||||
run: npm install -g yarn@latest
|
||||
|
||||
- name: Install lastest NPM
|
||||
run: npm install -g npm@latest
|
||||
run: npm install -g yarn
|
||||
|
||||
- name: Setup Python 3
|
||||
uses: actions/setup-python@v4
|
||||
|
|
|
@ -63,7 +63,7 @@ if [[ "${OS_NAME}" == "linux" ]]; then
|
|||
fi
|
||||
|
||||
if [[ "${OS_NAME}" == "osx" ]]; then
|
||||
CHILD_CONCURRENCY=1 yarn --frozen-lockfile --network-timeout 180000
|
||||
CHILD_CONCURRENCY=1 yarn --network-timeout 180000
|
||||
|
||||
yarn postinstall
|
||||
else
|
||||
|
@ -91,7 +91,7 @@ else
|
|||
export npm_config_arm_version=7
|
||||
fi
|
||||
|
||||
CHILD_CONCURRENCY=1 yarn --frozen-lockfile --check-files --network-timeout 180000
|
||||
CHILD_CONCURRENCY=1 yarn --check-files --network-timeout 180000
|
||||
fi
|
||||
|
||||
setpath() {
|
||||
|
|
Loading…
Reference in a new issue