Skip to content

Commit

Permalink
Update version of node used in ci.yml
Browse files Browse the repository at this point in the history
`ci.yml` specified Node version 14, which is very old; GitHub
officially deprecated version 16 in 2023 (c.f.
https://nodejs.org/en/blog/announcements/nodejs16-eol). Updating this
to use version 20.17.0, which is the current LTS version.
  • Loading branch information
mhucka committed Sep 6, 2024
1 parent c71160e commit a0c1b4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14.16.1'
node-version: '20.17.0'
- name: Install npm
run: check/npm ci
- name: Check build matches the current
Expand All @@ -341,7 +341,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14.16.1'
node-version: '20.17.0'
- name: Install npm
run: check/npm ci
- name: Lint
Expand All @@ -353,7 +353,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14.16.1'
node-version: '20.17.0'
- name: Install npm dependencies
run: check/npm ci
- name: Unit tests
Expand All @@ -367,7 +367,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14.16.1'
node-version: '20.17.0'
- name: Install npm dependencies
run: check/npm ci
- name: Test
Expand Down

0 comments on commit a0c1b4f

Please sign in to comment.