Skip to content

Commit

Permalink
Upgrade to Node20.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rauboti committed May 10, 2024
1 parent a325fb3 commit 4eb02ad
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.9'
node-version: '20.13.1'
- name: 'Login to ECR repo'
run:
RES=$(aws sts assume-role --role-arn $CI_RELEASE_ROLE --role-session-name github-actions-ecr-login)
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.9.0-alpine3.18 as builder
FROM node:20.13.1-alpine3.18 as builder

ENV HOME=/home/app
ENV APP_PATH=$HOME/listing-frontend
Expand All @@ -22,7 +22,7 @@ COPY public $APP_PATH/public
RUN yarn run build

# Run stage
FROM node:20.9.0-alpine3.18
FROM node:20.13.1-alpine3.18

ENV HOME=/home/app
ENV APP_PATH=$HOME/listing-frontend
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Requirements

- Node.JS > 20.6.0
- Node.JS > 20.13.1
- yarn ~1.15.0
- Docker (optional)

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
]
},
"engines": {
"node": ">=20.9.0",
"node": ">=20.13.1",
"npm": ">=9.0.0"
},
"devDependencies": {
Expand All @@ -45,7 +45,7 @@
"@types/express": "^4.17.13",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/node": "^20.9.2",
"@types/node": "^20.12.11",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/remarkable": "^2.0.3",
Expand Down
9 changes: 8 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3298,7 +3298,7 @@
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10"
integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==

"@types/node@*", "@types/node@^20.9.2":
"@types/node@*":
version "20.9.2"
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.9.2.tgz#002815c8e87fe0c9369121c78b52e800fadc0ac6"
integrity sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==
Expand All @@ -3310,6 +3310,13 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.33.tgz#8c29a0036771569662e4635790ffa9e057db379b"
integrity sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==

"@types/node@^20.12.11":
version "20.12.11"
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.11.tgz#c4ef00d3507000d17690643278a60dc55a9dc9be"
integrity sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==
dependencies:
undici-types "~5.26.4"

"@types/parse-json@^4.0.0":
version "4.0.0"
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
Expand Down

0 comments on commit 4eb02ad

Please sign in to comment.