Skip to content

Commit 60f03dc

Browse files
EduardoLuizFNJ
authored andcommitted
chore: bump node version
1 parent cd5b719 commit 60f03dc

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Checkout
2121
uses: actions/checkout@v2
2222

23-
- name: Use Node.js ${{ matrix.node-version }}
23+
- name: Use Node.js 20.18.0
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: ${{ matrix.node-version }}
26+
node-version: 20.18.0
2727

2828
- name: Configure AWS Credentials
2929
uses: aws-actions/configure-aws-credentials@v1

.github/workflows/nodejs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
node-version: [18.19.1]
33+
node-version: [20.18.0]
3434
steps:
3535
- name: Checkout
3636
uses: actions/checkout@v2
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
strategy:
4545
matrix:
46-
node-version: [18.19.1]
46+
node-version: [20.18.0]
4747
steps:
4848
- uses: actions/checkout@v2
4949
- name: Use Node.js ${{ matrix.node-version }}
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
strategy:
6464
matrix:
65-
node-version: [18.19.1]
65+
node-version: [20.18.0]
6666
steps:
6767
- name: Checkout
6868
uses: actions/checkout@v2

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.19.1
1+
20.18.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.19.1-alpine AS package
1+
FROM node:20.18.0-alpine AS package
22

33
ARG NEXT_PUBLIC_UMAMI_SITE_ID
44
ARG NEXT_PUBLIC_RECAPTCHA_SITEKEY
@@ -62,7 +62,7 @@ RUN NEXT_PUBLIC_UMAMI_SITE_ID=$NEXT_PUBLIC_UMAMI_SITE_ID \
6262
NEXT_PUBLIC_ENABLE_BANNER_DONATION=$NEXT_PUBLIC_ENABLE_BANNER_DONATION \
6363
yarn build
6464

65-
FROM node:18.19.1-alpine
65+
FROM node:20.18.0-alpine
6666

6767
LABEL maintainer="Giovanni Rossini <giovannijrrossini@gmail.com>"
6868

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,5 +282,8 @@
282282
"@compodoc/compodoc": "1.1.21",
283283
"cheerio": "1.0.0-rc.12"
284284
},
285-
"packageManager": "yarn@3.6.3"
285+
"packageManager": "yarn@3.6.3",
286+
"engines": {
287+
"node": ">=20.18.0"
288+
}
286289
}

0 commit comments

Comments
 (0)