Skip to content

Commit d7bf8b6

Browse files
authored
Merge pull request #18896 from mozilla/fix-node-func-test-runner
fix(circleci): update all node images to 22.15.1
2 parents ebf2d36 + cd3e916 commit d7bf8b6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

_dev/docker/ci-lockfile-generator/Dockerfile

Lines changed: 1 addition & 1 deletion
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.15
8+
FROM cimg/node:22.15.1
99

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

_dev/docker/ci/Dockerfile

Lines changed: 3 additions & 3 deletions
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.15 AS test-runner
7+
FROM cimg/node:22.15.1 AS test-runner
88
RUN sudo apt-get update && sudo apt-get install -y \
99
python3-venv
1010
WORKDIR /home/circleci
@@ -29,15 +29,15 @@ RUN yarn install --immutable;
2929
# Acts as an intermediate stage for adding the firefox install. Note,
3030
# that a yarn install must happen first to ensure the correct version
3131
# of firefox is installed. Also note that the functional-test-runner
32-
# must based on cimg/node:22.14-browsers, which is why this stage
32+
# must based on cimg/node:22.15.1-browsers, which is why this stage
3333
# is necessary.
3434
FROM builder AS playwright-install
3535
RUN npx playwright install --with-deps firefox chromium webkit;
3636

3737

3838
# Runs functional tests in our CI. Needs minimal install. Assumes
3939
# workspace will be restored into the project folder.
40-
FROM cimg/node:22.14-browsers AS functional-test-runner
40+
FROM cimg/node:22.15.1-browsers AS functional-test-runner
4141
WORKDIR /home/circleci
4242
COPY --chown=circleci:circleci --from=playwright-install /home/circleci/.cache/ms-playwright .cache/ms-playwright/
4343
COPY --chown=circleci:circleci project project

0 commit comments

Comments
 (0)