Skip to content

Commit

Permalink
Update node to v20 (#411)
Browse files Browse the repository at this point in the history
* update base image to node20.8-alpine3.17

* update workflows to use node v20

* update base image to node20.17-alpine3.20
  • Loading branch information
mcleodj authored Sep 3, 2024
1 parent e4134a8 commit 2e5a25b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- name: Install modules
run: npm install
- name: Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'
- name: Install modules
run: npm install
- name: Run ESLint
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.13.0-alpine3.17 as builder
FROM node:20.17.0-alpine3.20 as builder

WORKDIR /src/fe

Expand Down

0 comments on commit 2e5a25b

Please sign in to comment.