Skip to content

Commit 58a3d81

Browse files
Merge branch 'master' into renovate/cypress
2 parents c2eef11 + 1b02fe1 commit 58a3d81

18 files changed

+22
-22
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
parallelism: 3
171171
executor:
172172
name: cypress/default
173-
node-version: '22.11.0'
173+
node-version: '22.15.0'
174174
steps:
175175
- cypress/install:
176176
post-install: 'npm run build'
@@ -192,7 +192,7 @@ jobs:
192192
parallelism: 2
193193
executor:
194194
name: cypress/default
195-
node-version: '22.11.0'
195+
node-version: '22.15.0'
196196
steps:
197197
- cypress/install:
198198
install-browsers: true
@@ -205,7 +205,7 @@ jobs:
205205
parallelism: 2
206206
executor:
207207
name: cypress/default
208-
node-version: '22.11.0'
208+
node-version: '22.15.0'
209209
steps:
210210
- cypress/install:
211211
install-browsers: true
@@ -216,7 +216,7 @@ jobs:
216216
release:
217217
executor:
218218
name: cypress/default
219-
node-version: '22.11.0'
219+
node-version: '22.15.0'
220220
steps:
221221
- checkout
222222
- run: npm ci

.github/workflows/chrome-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
chrome:
88
runs-on: ubuntu-24.04
99
# https://github.com/cypress-io/cypress-docker-images
10-
container: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
10+
container: cypress/browsers:22.15.0
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v4

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cache:
2020

2121
# this job installs npm dependencies and Cypress
2222
install:
23-
image: cypress/base:22.14.0
23+
image: cypress/base:22.15.0
2424
stage: build
2525

2626
script:
@@ -35,7 +35,7 @@ install:
3535

3636
# all jobs that actually run tests can use the same definition
3737
.job_template:
38-
image: cypress/base:22.14.0
38+
image: cypress/base:22.15.0
3939
stage: test
4040
script:
4141
# print CI environment variables for reference

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ blocks:
6868
# common commands that should be done before each E2E test command
6969
prologue:
7070
commands:
71-
- nvm install 20
71+
- nvm install 22
7272
- npm install -g npm
7373
- checkout
7474

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ env:
44
- PUPPETEER_SKIP_DOWNLOAD=1
55

66
node_js:
7-
- 20
7+
- 22
88

99
cache:
1010
# cache both npm modules and Cypress binary

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://documentation.codeship.com/pro/languages-frameworks/nodejs/
33

44
# use Cypress provided image with all dependencies included
5-
FROM cypress/base:22.14.0
5+
FROM cypress/base:22.15.0
66
RUN node --version
77
RUN npm --version
88
WORKDIR /home/node/app

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pipeline {
3737
agent {
3838
// this image provides everything needed to run Cypress
3939
docker {
40-
image 'cypress/base:22.11.0'
40+
image 'cypress/base:22.15.0'
4141
}
4242
}
4343

basic/.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
test:
44
docker:
5-
- image: cypress/base:22.14.0
5+
- image: cypress/base:22.15.0
66
steps:
77
- checkout
88
# restore folders with npm dependencies and Cypress binary

basic/.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cache:
1313
- cache/Cypress
1414

1515
test:
16-
image: cypress/base:22.14.0
16+
image: cypress/base:22.15.0
1717
stage: test
1818
script:
1919
- npm ci

basic/.semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ blocks:
2020
jobs:
2121
- name: npm ci and cache
2222
commands:
23-
- nvm install 20
23+
- nvm install 22
2424
- npm install -g npm
2525
- checkout
2626

basic/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22

33
node_js:
4-
- 20
4+
- 22
55

66
cache:
77
# cache both npm modules and Cypress binary

basic/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pipeline {
22
agent {
33
// this image provides everything needed to run Cypress
44
docker {
5-
image 'cypress/base:22.11.0'
5+
image 'cypress/base:22.15.0'
66
}
77
}
88

basic/buildspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 0.2
33
phases:
44
install:
55
runtime-versions:
6-
nodejs: 20
6+
nodejs: 22
77
commands:
88
# Set COMMIT_INFO variables to send Git specifics to Cypress Cloud when recording
99
# https://docs.cypress.io/guides/continuous-integration/introduction#Git-information

basic/codeship-pro/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://documentation.codeship.com/pro/languages-frameworks/nodejs/
33

44
# use Cypress provided image with all dependencies included
5-
FROM cypress/base:22.14.0
5+
FROM cypress/base:22.15.0
66
RUN node --version
77
RUN npm --version
88
WORKDIR /home/node/app

buddy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
type: "BUILD"
99
working_directory: "/buddy/cypress-example-kitchensink"
1010
docker_image_name: "cypress/base"
11-
docker_image_tag: "22.11.0"
11+
docker_image_tag: "22.15.0"
1212
execute_commands:
1313
- "npm install --force"
1414
- "npm run cy:verify"

buildspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ build-matrix:
2424
phases:
2525
install:
2626
runtime-versions:
27-
nodejs: latest
27+
nodejs: 22
2828
commands:
2929
# Set COMMIT_INFO variables to send Git specifics to Cypress Cloud when recording
3030
# https://docs.cypress.io/guides/continuous-integration/introduction#Git-information

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
"yaml-lint": "1.7.0"
7979
},
8080
"engines": {
81-
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
81+
"node": "^20.0.0 || >=22.0.0"
8282
}
8383
}

0 commit comments

Comments
 (0)