Skip to content

Commit 6509b06

Browse files
committed
Correctly set the Node version in GH Actions
1 parent a0b83f7 commit 6509b06

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: '16.x'
15+
node-version: '18.12.1'
1616
- name: Add key to allow access to repository
1717
env:
1818
SSH_AUTH_SOCK: /tmp/ssh_agent.sock

.github/workflows/latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '16.x'
16+
node-version: '18.12.1'
1717
- name: Install ubuntu deps
1818
if: contains(matrix.os, 'ubuntu-20.04')
1919
run: sudo apt install mesa-common-dev libglu1-mesa-dev libegl1 libopengl-dev

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- uses: actions/setup-node@v4
2929
with:
30-
node-version: '16.x'
30+
node-version: '18.12.1'
3131

3232
- name: Install ubuntu deps
3333
if: contains(matrix.platform, 'linux')
@@ -84,7 +84,7 @@ jobs:
8484
- uses: actions/checkout@v4
8585
- uses: actions/setup-node@v4
8686
with:
87-
node-version: '16.x'
87+
node-version: '18.12.1'
8888
- name: Install ubuntu deps
8989
run: sudo apt update
9090
- run: sudo apt install mesa-common-dev libglu1-mesa-dev

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: '16.x'
15+
node-version: '18.12.1'
1616
- name: Install ubuntu deps
1717
if: contains(matrix.os, 'ubuntu-20.04')
1818
run: sudo apt install mesa-common-dev libglu1-mesa-dev libegl1 libopengl-dev

0 commit comments

Comments
 (0)