Skip to content

Commit ec3af8e

Browse files
authored
chore(deps): update ci examples to Node.js 24.13.0 (#1017)
1 parent c9e14ea commit ec3af8e

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

.circleci/config.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
name: Install Node.js
3131
command: |
3232
nvm --version
33-
nvm install 24.11.0
34-
nvm use 24.11.0
33+
nvm install 24.13.0
34+
nvm use 24.13.0
3535
- restore_cache:
3636
key: dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}
3737

@@ -70,8 +70,8 @@ jobs:
7070
name: Install Node.js
7171
command: |
7272
nvm --version
73-
nvm install 24.11.0
74-
nvm use 24.11.0
73+
nvm install 24.13.0
74+
nvm use 24.13.0
7575
- restore_cache:
7676
key: dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}
7777

@@ -113,8 +113,8 @@ jobs:
113113
name: Install Node.js
114114
command: |
115115
nvm --version
116-
nvm install 24.11.0
117-
nvm use 24.11.0
116+
nvm install 24.13.0
117+
nvm use 24.13.0
118118
- restore_cache:
119119
key: dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}
120120

@@ -150,9 +150,9 @@ jobs:
150150
- run:
151151
name: Install Node.js
152152
command: |
153-
nvm install 24.11.0
154-
nvm use 24.11.0
155-
nvm alias default 24.11.0
153+
nvm install 24.13.0
154+
nvm use 24.13.0
155+
nvm alias default 24.13.0
156156
- cypress/install:
157157
post-install: "npm run build"
158158
# show Cypress cache folder and binary versions
@@ -171,7 +171,7 @@ jobs:
171171
parallelism: 3
172172
executor:
173173
name: cypress/default
174-
node-version: '24.11.0'
174+
node-version: '24.13.0'
175175
steps:
176176
- cypress/install:
177177
post-install: 'npm run build'
@@ -193,7 +193,7 @@ jobs:
193193
parallelism: 2
194194
executor:
195195
name: cypress/default
196-
node-version: '24.11.0'
196+
node-version: '24.13.0'
197197
steps:
198198
- cypress/install:
199199
install-browsers: true
@@ -206,7 +206,7 @@ jobs:
206206
parallelism: 2
207207
executor:
208208
name: cypress/default
209-
node-version: '24.11.0'
209+
node-version: '24.13.0'
210210
steps:
211211
- cypress/install:
212212
install-browsers: true
@@ -217,7 +217,7 @@ jobs:
217217
release:
218218
executor:
219219
name: cypress/default
220-
node-version: '24.11.0'
220+
node-version: '24.13.0'
221221
steps:
222222
- checkout
223223
- 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:24.11.0
10+
container: cypress/browsers:24.13.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:24.11.0
23+
image: cypress/base:24.13.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:24.11.0
38+
image: cypress/base:24.13.0
3939
stage: test
4040
script:
4141
# print CI environment variables for reference

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:24.11.0
5+
FROM cypress/base:24.13.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:24.11.0'
40+
image 'cypress/base:24.13.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:24.11.0
5+
- image: cypress/base:24.13.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:24.11.0
16+
image: cypress/base:24.13.0
1717
stage: test
1818
script:
1919
- npm ci

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:24.11.0'
5+
image 'cypress/base:24.13.0'
66
}
77
}
88

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:24.11.0
5+
FROM cypress/base:24.13.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: "24.11.0"
11+
docker_image_tag: "24.13.0"
1212
execute_commands:
1313
- "npm install --force"
1414
- "npm run cy:verify"

0 commit comments

Comments
 (0)