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 to node 22 from node 18 #6707

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
frontend-code-test:
resource_class: large
docker:
- image: cimg/node:18.19.1
- image: cimg/node:22.13.0
working_directory: /home/circleci/tasking-manager
steps:
- checkout
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
working_directory: /home/circleci/tasking-manager
resource_class: medium
docker:
- image: cimg/node:18.19.1
- image: cimg/node:22.13.0
steps:
- checkout
- aws-cli/setup:
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
working_directory: /home/circleci/tasking-manager
resource_class: large
docker:
- image: cimg/node:18.19.1
- image: cimg/node:22.13.0
parameters:
stack_name:
description: "the name of the stack for cfn-config"
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/Dockerfile.frontend
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.19.1 as build
FROM node:22.13.0 as build

WORKDIR /usr/src/app/frontend
COPY frontend .
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/Dockerfile.frontend_development
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.19.1
FROM node:22.13.0

WORKDIR /usr/src/app

Expand Down
Loading