Skip to content
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

Update deps #871

Merged
merged 2 commits into from
Mar 6, 2021
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
with:
java-version: "11"
architecture: x64
- name: Use Node 12.16.2
- name: Use Node 14.15.4
uses: actions/setup-node@v1
with:
node-version: 12.16.2
node-version: 14.15.4
- name: Build
uses: eskatos/gradle-command-action@v1
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
java-version: "11"
architecture: x64
- name: Use Node 12.16.2
- name: Use Node 14.15.4
uses: actions/setup-node@v1
with:
node-version: 12.16.2
node-version: 14.15.4
- name: Cache gradle home
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12.16.2]
node-version: [14.15.4]
java-version: ["8", "11", "15"]
os: [ubuntu-latest, windows-latest]
# os: [ubuntu-latest, windows-latest, macos-latest]
Expand Down Expand Up @@ -183,10 +183,10 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, '/release/')
steps:
- uses: actions/checkout@v2
- name: Use Node 12.16.2
- name: Use Node 14.15.4
uses: actions/setup-node@v1
with:
node-version: 12.16.2
node-version: 14.15.4
- name: Build & prepare extension
uses: eskatos/gradle-command-action@v1
with:
Expand Down Expand Up @@ -219,10 +219,10 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/checkout@v2
- name: Use Node 12.16.2
- name: Use Node 14.15.4
uses: actions/setup-node@v1
with:
node-version: 12.16.2
node-version: 14.15.4
- name: Cache gradle
uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/erbium
14.15.4
2 changes: 1 addition & 1 deletion extension/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"prettier",
"plugin:prettier/recommended",
"plugin:sonarjs/recommended"
],
Expand Down
Loading