Skip to content

Commit

Permalink
global: upgrade to node 18
Browse files Browse the repository at this point in the history
Use node 18 instead of node 16, as the former is the default version on
Fedora/Ubuntu and the latter has reached EOL.

Closes reanahub#347
  • Loading branch information
mdonadoni committed Oct 12, 2023
1 parent c3201cb commit 459b220
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: Install project dependencies
run: yarn global add prettier
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: Install project dependencies
run: yarn global add eslint
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: Install project dependencies
run: yarn
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/node:16 as react-build
FROM docker.io/library/node:18 as react-build
WORKDIR /code
COPY . /code
# hadolint ignore=DL3003
Expand Down

0 comments on commit 459b220

Please sign in to comment.