Skip to content

Commit 61a84f5

Browse files
authored
chore(deps): update ci examples to node 24.11.0 (#1001)
1 parent 3d36876 commit 61a84f5

File tree

20 files changed

+21
-20
lines changed

20 files changed

+21
-20
lines changed

.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:22.15.0
10+
container: cypress/browsers:24.11.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.15.0
23+
image: cypress/base:24.11.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.15.0
38+
image: cypress/base:24.11.0
3939
stage: test
4040
script:
4141
# print CI environment variables for reference

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22
1+
24

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24

.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 22
71+
- nvm install 24
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-
- 22
7+
- 24
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.15.0
5+
FROM cypress/base:24.11.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.15.0'
40+
image 'cypress/base:24.11.0'
4141
}
4242
}
4343

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ image: Visual Studio 2022
99
# https://www.appveyor.com/docs/lang/nodejs-iojs/
1010
# Test against the latest version of this Node.js version
1111
environment:
12-
nodejs_version: "22"
12+
nodejs_version: "24"
1313

1414
# Install scripts. (runs after repo cloning)
1515
install:

azure-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- task: NodeTool@0
1717
inputs:
18-
versionSpec: '22.x'
18+
versionSpec: '24.x'
1919
displayName: 'Install Node.js'
2020

2121
# npm modules and Cypress binary should be cached

0 commit comments

Comments
 (0)