Skip to content

Commit dc69d18

Browse files
committed
Bump Cypress Docker versions in examples to Node.js 22.15.0 LTS
1 parent d15652c commit dc69d18

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

docs/accessibility/results-api.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ run-cypress:
322322
pipeline {
323323
agent {
324324
docker {
325-
image 'cypress/base:22.12.0'
325+
image 'cypress/base:22.15.0'
326326
}
327327
}
328328

@@ -393,7 +393,7 @@ version: 2.1
393393
jobs:
394394
linux-test:
395395
docker:
396-
- image: cypress/base:22.12.0
396+
- image: cypress/base:22.15.0
397397

398398
working_directory: ~/repo
399399
steps:

docs/app/continuous-integration/aws-codebuild.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,14 @@ version: 0.2
138138
## https://docs.aws.amazon.com/codebuild/latest/userguide/batch-build-buildspec.html
139139
140140
## Define build to run using the
141-
## "cypress/browsers:22.12.0" image
141+
## "cypress/browsers:22.15.0" image
142142
## from the Cypress Amazon ECR Public Gallery
143143
batch:
144144
fast-fail: false
145145
build-list:
146146
- identifier: cypress-e2e-tests
147147
env:
148-
image: public.ecr.aws/cypress-io/cypress/browsers:22.12.0
148+
image: public.ecr.aws/cypress-io/cypress/browsers:22.15.0
149149
150150
phases:
151151
install:

docs/app/continuous-integration/bitbucket-pipelines.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ example, this allows us to run the tests in Firefox by passing the
4343
Read about [Cypress Docker variants](/app/continuous-integration/overview#Cypress-Docker-variants) to decide which image is best for your project.
4444

4545
```yaml title="bitbucket-pipelines.yml"
46-
image: cypress/browsers:22.12.0
46+
image: cypress/browsers:22.15.0
4747

4848
pipelines:
4949
default:
@@ -82,7 +82,7 @@ Artifacts from a job can be defined by providing paths to the `artifacts`
8282
attribute.
8383

8484
```yaml title="bitbucket-pipelines.yml"
85-
image: cypress/browsers:22.12.0
85+
image: cypress/browsers:22.15.0
8686
8787
pipelines:
8888
default:
@@ -146,7 +146,7 @@ recording test results to [Cypress Cloud](/cloud/get-started/introduction).
146146
:::
147147

148148
```yaml title="bitbucket-pipelines.yml"
149-
image: cypress/base:22.12.0
149+
image: cypress/base:22.15.0
150150
151151
## job definition for running E2E tests in parallel
152152
e2e: &e2e
@@ -205,7 +205,7 @@ definitions:
205205
The complete `bitbucket-pipelines.yml` is below:
206206

207207
```yaml title="bitbucket-pipelines.yml"
208-
image: cypress/base:22.12.0
208+
image: cypress/base:22.15.0
209209
210210
## job definition for running E2E tests in parallel
211211
e2e: &e2e

docs/app/continuous-integration/github-actions.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
cypress-run:
189189
runs-on: ubuntu-24.04
190190
container:
191-
image: cypress/browsers:22.12.0
191+
image: cypress/browsers:22.15.0
192192
options: --user 1001
193193
steps:
194194
- name: Checkout

docs/app/continuous-integration/gitlab-ci.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ stages:
7474
- test
7575
7676
test:
77-
image: cypress/browsers:22.12.0
77+
image: cypress/browsers:22.15.0
7878
stage: test
7979
script:
8080
# install dependencies
@@ -105,7 +105,7 @@ cache:
105105
- .npm/
106106
107107
test:
108-
image: cypress/browsers:22.12.0
108+
image: cypress/browsers:22.15.0
109109
stage: test
110110
script:
111111
# install dependencies
@@ -172,7 +172,7 @@ cache:
172172
173173
## Install npm dependencies and Cypress
174174
install:
175-
image: cypress/browsers:22.12.0
175+
image: cypress/browsers:22.15.0
176176
stage: build
177177
script:
178178
- npm ci
@@ -217,13 +217,13 @@ cache:
217217
218218
## Install npm dependencies and Cypress
219219
install:
220-
image: cypress/browsers:22.12.0
220+
image: cypress/browsers:22.15.0
221221
stage: build
222222
script:
223223
- npm ci
224224
225225
ui-chrome-tests:
226-
image: cypress/browsers:22.12.0
226+
image: cypress/browsers:22.15.0
227227
stage: test
228228
parallel: 5
229229
script:

docs/ui-coverage/results-api.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ run-cypress:
236236
pipeline {
237237
agent {
238238
docker {
239-
image 'cypress/base:22.12.0'
239+
image 'cypress/base:22.15.0'
240240
}
241241
}
242242

@@ -307,7 +307,7 @@ version: 2.1
307307
jobs:
308308
linux-test:
309309
docker:
310-
- image: cypress/base:22.12.0
310+
- image: cypress/base:22.15.0
311311

312312
working_directory: ~/repo
313313
steps:

0 commit comments

Comments
 (0)