Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Node.js 22.3.0 → 22.7.0 #348

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.5.1
22.7.0
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
#
# asdf install

nodejs 22.3.0
nodejs 22.7.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.5

# When updating image version, make sure to update below layer as well
FROM node:22.5.1-alpine3.20 as builder
FROM node:22.7.0-alpine3.20 as builder

# Create app directory
WORKDIR /app
Expand Down Expand Up @@ -43,7 +43,7 @@ COPY . .
RUN yarn build

# When updating image version, make sure to update the above layer as well
FROM node:22.5.1-alpine3.20 as app
FROM node:22.7.0-alpine3.20 as app

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"lint:fix": "npm run lint -- --fix"
},
"engines": {
"node": "22.5.1"
"node": "22.7.0"
},
"dependencies": {
"@chainlink/ccip-read-server": "^0.2.1",
Expand Down