Skip to content

Commit

Permalink
deps: use 22 node
Browse files Browse the repository at this point in the history
  • Loading branch information
dnechay committed Feb 19, 2025
1 parent add2088 commit 0724a3d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-subgraph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.20.1'
node-version-file: .nvmrc
- name: Filter Networks
id: filter_networks
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/human-app/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Using bullseye instead of slim because it needs Python and build tools for node-gyp
FROM node:18-bullseye
FROM node:22.14-bullseye
ARG APP_PATH=packages/apps/human-app/frontend

# Create app directory
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/human-app/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-slim
FROM node:22.14-slim
ARG APP_PATH=packages/apps/human-app/server

# Create app directory
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/job-launcher/client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Using bullseye instead of slim because it needs Python and build tools for node-gyp
FROM node:18-bullseye
FROM node:22.14-bullseye
ARG APP_PATH=packages/apps/job-launcher/client

# Create app directory
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/job-launcher/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-slim
FROM node:22.14-slim
ARG APP_PATH=packages/apps/job-launcher/server

# Create app directory
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/reputation-oracle/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-slim
FROM node:22.14-slim
ARG APP_PATH=packages/apps/reputation-oracle/server

# Create app directory
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TODO: make this shared and part of local setup
FROM node:18-slim
FROM node:22.14-slim

# wget is needed for healthcheck
RUN apt-get update && apt-get install -y wget
Expand Down

0 comments on commit 0724a3d

Please sign in to comment.