8000 Got rid of `_windows` field, rely on superclass. by kittaakos · Pull Request #952 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

Got rid of _windows field, rely on superclass. #952

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

Closed
Closed
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
Stick Node 14.18.1 for GH Actions
  • Loading branch information
msujew committed Apr 11, 2022
commit 7483f12d5e6253161efc1c18937d80979765f804
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Install Node.js 14.x
- name: Install Node.js 14.18.1
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '14.18.1'
registry-url: 'https://registry.npmjs.org'

- name: Install Python 3.x
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-i18n-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Node.js 14.x
- name: Install Node.js 14.18.1
uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '14.18.1'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/i18n-nightly-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Install Node.js 14.x
- name: Install Node.js 14.18.1
uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '14.18.1'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/i18n-weekly-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Install Node.js 14.x
- name: Install Node.js 14.18.1
uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '14.18.1'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
Expand Down
0