8000 Update Theia to 1.22.1 by msujew · Pull Request #791 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

Update Theia to 1.22.1 #791

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
updated CI
  • Loading branch information
fstasi committed Jan 31, 2022
commit 593d15f06544a0065cb19e03f0573fa4468b0224
2 changes: 1 addition & 1 deletion 2 .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: '12.14.1'
node-version: '14.18.2'
registry-url: 'https://registry.npmjs.org'

- name: Install Python 2.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-i18n-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install Node.js 12.x
uses: actions/setup-node@v2
with:
node-version: '12.14.1'
node-version: '14.18.2'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-nightly-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install Node.js 12.x
uses: actions/setup-node@v2
with:
node-version: '12.14.1'
node-version: '14.18.2'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-weekly-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install Node.js 12.x
uses: actions/setup-node@v2
with:
node-version: '12.14.1'
node-version: '14.18.2'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion electron/build/template-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"patch": "ncp ./patch/main.js ./src-gen/backend/main.js"
},
"engines": {
"node": ">=12.14.1 <13"
"node": ">=14.0.0 <15"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion electron/packager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"yargs": "^12.0.5"
},
"engines": {
"node": ">=12.14.1 <13"
"node": ">=14.0.0 <15"
},
"mocha": {
"reporter": "spec",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"license": "AGPL-3.0-or-later",
"private": true,
"engines": {
"node": ">=12.14.1 <13"
"node": ">=14.0.0 <15"
},
"devDependencies": {
"@theia/cli": "1.22.1",
Expand Down
0