Skip to content

Commit

Permalink
chore(deps): update nodejs to v23
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Jan 22, 2025
1 parent 5b4fd7b commit 39f4508
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ references:
defaults: &defaults
working_directory: ~/wp-calypso
docker:
- image: cimg/node:22.9.0
- image: cimg/node:23.6.1
environment:
CIRCLE_ARTIFACTS: /tmp/artifacts
CIRCLE_TEST_REPORTS: /tmp/test_results
Expand Down Expand Up @@ -142,7 +142,7 @@ commands:
jobs:
wp-desktop-assets:
docker:
- image: cimg/node:22.9.0-browsers
- image: cimg/node:23.6.1-browsers
<<: *desktop_defaults
environment:
VERSION: << pipeline.git.tag >>
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
docker:
# Important: the build fails on 18.13.0, so we pin it to a slightly older
# version to keep this one working for now.
- image: cimg/node:22.9.0-browsers
- image: cimg/node:23.6.1-browsers
<<: *desktop_defaults
resource_class: medium+
shell: /bin/bash --login
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#### This image is not pushed to any repository and it shouldn't be used as base image for any other docker build.
#### Its main goal is to create a `/calypso/.cache` that can be copied over other images that can benefit from a warm cache.
#### Note that yarn v3 cache lives in `/calypso/.yarn`
FROM node:22.9.0-bullseye-slim as cache
FROM node:23.6.1-bullseye-slim as cache
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

ARG node_memory=8192
Expand Down Expand Up @@ -30,7 +30,7 @@ ENTRYPOINT [ "/bin/bash" ]

#### base image
#### This image can be used as a base image for other builds, or to test and build calypso.
FROM node:22.9.0-bullseye-slim as base
FROM node:23.6.1-bullseye-slim as base
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

ARG node_memory=8192
Expand Down
2 changes: 1 addition & 1 deletion packages/wp-babel-makepot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.9.0
FROM node:23.6.1

# /src is where we expect source javascript to run our babel config over
RUN mkdir /src
Expand Down

0 comments on commit 39f4508

Please sign in to comment.