Skip to content

Commit df69304

Browse files
committed
Update to supported Node.JS version 18
1 parent cc52c50 commit df69304

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
if: needs.skip_if_running.outputs.skip != 'true'
2929

3030
steps:
31-
- uses: actions/checkout@v2
32-
- uses: actions/setup-node@v1
31+
- uses: actions/checkout@v4
32+
- uses: actions/setup-node@v4
3333
with:
34-
node-version: 14
34+
node-version: 18
3535
- name: Run terminusdb server
3636
run: docker run --detach --publish 127.0.0.1:6363:6363 terminusdb/terminusdb-server:dev && sleep 3
3737
- name: Install, build and test

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- name: Clone JSDoc template
1515
run: git clone https://github.com/terminusdb-labs/jsdoc-terminusdb-template.git
1616
- name: Run NPM Install

.github/workflows/production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
- name: Use Node.js ${{ matrix.node-version }}
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: 14
17+
node-version: 18
1818
registry-url: 'https://registry.npmjs.org'
1919
- run: npm install
2020
- run: npm run build

0 commit comments

Comments
 (0)