File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ executors:
53
53
tiny-executor :
54
54
resource_class : small
55
55
docker :
56
- - image : cimg/node:22.14.0
56
+ - image : cimg/node:22.15.1
57
57
environment :
58
58
HUSKY_SKIP_INSTALL : 1
59
59
@@ -65,7 +65,7 @@ executors:
65
65
default : medium+
66
66
image :
67
67
type : string
68
- default : cimg/node:22.14.0
68
+ default : cimg/node:22.15.1
69
69
resource_class : << parameters.resource_class >>
70
70
docker :
71
71
- image : << parameters.image >>
@@ -1002,7 +1002,7 @@ workflows:
1002
1002
name : Deploy CI Images
1003
1003
executor :
1004
1004
name : docker-build-executor
1005
- image : cimg/node:22.14.0 -browsers
1005
+ image : cimg/node:22.15.1 -browsers
1006
1006
filters :
1007
1007
branches :
1008
1008
only :
@@ -1276,7 +1276,7 @@ workflows:
1276
1276
name : Deploy CI Images (nightly)
1277
1277
executor :
1278
1278
name : docker-build-executor
1279
- image : cimg/node:22.14.0 -browsers
1279
+ image : cimg/node:22.15.1 -browsers
1280
1280
# Note, setting force-deploy as true will result in rebuilding the images regardless
1281
1281
# of whether or not there are package modifications.
1282
1282
force-deploy : true
Original file line number Diff line number Diff line change 1
- 22.14
1
+ 22.15
Original file line number Diff line number Diff line change 5
5
# By running a yarn install inside the same base container that we use in our CI, we can
6
6
# ensure the same checksums are created correctly.
7
7
#
8
- FROM cimg/node:22.14
8
+ FROM cimg/node:22.15
9
9
10
10
COPY . .
11
11
RUN sudo yarn cache clear --all
Original file line number Diff line number Diff line change 4
4
5
5
# Runs tests and common CI operations. Needs minimal install. Assumes
6
6
# 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
8
8
RUN sudo apt-get update && sudo apt-get install -y \
9
9
python3-venv
10
10
WORKDIR /home/circleci
Original file line number Diff line number Diff line change 1
1
# Multi stage docker build for fxa-mono repo. Note that stages should be cached due to docker layer caching being
2
2
# turned on in CI.
3
3
4
- FROM node:22.14.0 -bullseye-slim AS fxa-base
4
+ FROM node:22.15.1 -bullseye-slim AS fxa-base
5
5
RUN set -x \
6
6
&& addgroup --gid 10001 app \
7
7
&& adduser --disabled-password \
Original file line number Diff line number Diff line change 137
137
"winston" : " ^3.17.0"
138
138
},
139
139
"engines" : {
140
- "node" : " ^22.14.0 "
140
+ "node" : " ^22.15.1 "
141
141
},
142
142
"lint-staged" : {
143
143
"packages/!(fxa-payments-server)/**/*.js" : [
You can’t perform that action at this time.
0 commit comments