Skip to content

Commit 24de889

Browse files
[CI][workflows] Use node 20 by default
Signed-off-by: Marc Dumais <[email protected]>
1 parent 46dd7b0 commit 24de889

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci-cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest]
20-
node-version: [18]
20+
node-version: [18,20,22]
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
matrix:
4646
os: [ubuntu-latest]
47-
node-version: [18]
47+
node-version: [20]
4848

4949
steps:
5050
- name: Check out Git repository
@@ -68,7 +68,7 @@ jobs:
6868
strategy:
6969
matrix:
7070
os: [ubuntu-latest]
71-
node-version: [18]
71+
node-version: [20]
7272
# Only execute when the trigger was a tag (new release)
7373
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'eclipse-cdt-cloud/vscode-trace-server'
7474

@@ -101,7 +101,7 @@ jobs:
101101
strategy:
102102
matrix:
103103
os: [ubuntu-latest]
104-
node-version: [18]
104+
node-version: [20]
105105
# Only execute when the trigger was a tag (new release)
106106
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'eclipse-cdt-cloud/vscode-trace-server'
107107

.github/workflows/license-check-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest]
23-
node: [18]
23+
node: [20]
2424
java: [11]
2525

2626
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)