Skip to content

Commit 7178ac6

Browse files
authored
Update all scripts to node 18 (#139)
1 parent eba88da commit 7178ac6

File tree

5 files changed

+3863
-920
lines changed

5 files changed

+3863
-920
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@ jobs:
66
steps:
77
- uses: actions/checkout@v3
88

9+
- uses: awalsh128/cache-apt-pkgs-action@v1
10+
with:
11+
packages: libssl-dev libkrb5-dev
12+
version: 1.0
13+
914
- name: Setup Node.js
10-
uses: actions/setup-node@v2
15+
uses: actions/setup-node@v3
1116
with:
12-
node-version: '14'
17+
node-version: '18'
18+
cache: 'npm'
1319

1420
- name: Install dependencies
1521
run: npm ci

.github/workflows/update_gh_pages.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,16 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v3
1212

13+
- uses: awalsh128/cache-apt-pkgs-action@v1
14+
with:
15+
packages: libssl-dev libkrb5-dev
16+
version: 1.0
17+
1318
- name: Setup Node.js
14-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v3
1520
with:
16-
node-version: '14'
21+
node-version: '18'
22+
cache: 'npm'
1723

1824
- name: Install dependencies
1925
run: npm ci

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

0 commit comments

Comments
 (0)