Skip to content

Commit 8b88fe0

Browse files
authored
Merge pull request #18871 from mozilla/upgrade-node-22_15_1
chore(nodejs): upgrade to 22.15.1
2 parents ffcf3b8 + 7e8e100 commit 8b88fe0

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ executors:
5353
tiny-executor:
5454
resource_class: small
5555
docker:
56-
- image: cimg/node:22.14.0
56+
- image: cimg/node:22.15.1
5757
environment:
5858
HUSKY_SKIP_INSTALL: 1
5959

@@ -65,7 +65,7 @@ executors:
6565
default: medium+
6666
image:
6767
type: string
68-
default: cimg/node:22.14.0
68+
default: cimg/node:22.15.1
6969
resource_class: << parameters.resource_class >>
7070
docker:
7171
- image: << parameters.image >>
@@ -1002,7 +1002,7 @@ workflows:
10021002
name: Deploy CI Images
10031003
executor:
10041004
name: docker-build-executor
1005-
image: cimg/node:22.14.0-browsers
1005+
image: cimg/node:22.15.1-browsers
10061006
filters:
10071007
branches:
10081008
only:
@@ -1276,7 +1276,7 @@ workflows:
12761276
name: Deploy CI Images (nightly)
12771277
executor:
12781278
name: docker-build-executor
1279-
image: cimg/node:22.14.0-browsers
1279+
image: cimg/node:22.15.1-browsers
12801280
# Note, setting force-deploy as true will result in rebuilding the images regardless
12811281
# of whether or not there are package modifications.
12821282
force-deploy: true

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.14
1+
22.15

_dev/docker/ci-lockfile-generator/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# By running a yarn install inside the same base container that we use in our CI, we can
66
# ensure the same checksums are created correctly.
77
#
8-
FROM cimg/node:22.14
8+
FROM cimg/node:22.15
99

1010
COPY . .
1111
RUN sudo yarn cache clear --all

_dev/docker/ci/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Runs tests and common CI operations. Needs minimal install. Assumes
66
# workspace will be restored into the project folder.
7-
FROM cimg/node:22.14 AS test-runner
7+
FROM cimg/node:22.15 AS test-runner
88
RUN sudo apt-get update && sudo apt-get install -y \
99
python3-venv
1010
WORKDIR /home/circleci

_dev/docker/mono/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Multi stage docker build for fxa-mono repo. Note that stages should be cached due to docker layer caching being
22
# turned on in CI.
33

4-
FROM node:22.14.0-bullseye-slim AS fxa-base
4+
FROM node:22.15.1-bullseye-slim AS fxa-base
55
RUN set -x \
66
&& addgroup --gid 10001 app \
77
&& adduser --disabled-password \

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
"winston": "^3.17.0"
138138
},
139139
"engines": {
140-
"node": "^22.14.0"
140+
"node": "^22.15.1"
141141
},
142142
"lint-staged": {
143143
"packages/!(fxa-payments-server)/**/*.js": [

0 commit comments

Comments
 (0)