Skip to content

Commit a460c7b

Browse files
authored
chore(deps): move to active LTS node.js 22 / 22.11 for CI (#900)
* chore(deps): move to active LTS node.js 22 / 22.11 for CI * Update appveyor.yml to 22 * Update .circleci/config.yml to node-version 22.11.0 * Update azure-ci.yml to node 22.x
1 parent d920d43 commit a460c7b

File tree

14 files changed

+19
-19
lines changed

14 files changed

+19
-19
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ executors:
1818
resource_class: macos.m1.medium.gen1
1919
browsers:
2020
docker:
21-
- image: 'cypress/browsers:node-20.14.0-chrome-126.0.6478.114-1-ff-127.0.1-edge-126.0.2592.61-1'
21+
- image: 'cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1'
2222

2323
jobs:
2424
win-test:
@@ -153,7 +153,7 @@ jobs:
153153
parallelism: 3
154154
executor:
155155
name: cypress/default
156-
node-version: '20.13.1'
156+
node-version: '22.11.0'
157157
steps:
158158
- cypress/install:
159159
post-install: 'npm run build'
@@ -175,7 +175,7 @@ jobs:
175175
parallelism: 2
176176
executor:
177177
name: cypress/default
178-
node-version: '20.13.1'
178+
node-version: '22.11.0'
179179
steps:
180180
- cypress/install:
181181
install-browsers: true
@@ -188,7 +188,7 @@ jobs:
188188
parallelism: 2
189189
executor:
190190
name: cypress/default
191-
node-version: '20.13.1'
191+
node-version: '22.11.0'
192192
steps:
193193
- cypress/install:
194194
install-browsers: true
@@ -199,7 +199,7 @@ jobs:
199199
release:
200200
executor:
201201
name: cypress/default
202-
node-version: '20.13.1'
202+
node-version: '22.11.0'
203203
steps:
204204
- checkout
205205
- run: npx [email protected]

.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-20.14.0-chrome-126.0.6478.114-1-ff-127.0.1-edge-126.0.2592.61-1
10+
container: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
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:20.16.0
23+
image: cypress/base:22.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:20.16.0
38+
image: cypress/base:22.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-
20
1+
22

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:20.16.0
5+
FROM cypress/base:22.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:20.14.0'
40+
image 'cypress/base:22.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: "20"
12+
nodejs_version: "22"
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: '20.x'
18+
versionSpec: '22.x'
1919
displayName: 'Install Node.js'
2020

2121
# npm modules and Cypress binary should be cached

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:20.16.0
5+
- image: cypress/base:22.11.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:20.16.0
16+
image: cypress/base:22.11.0
1717
stage: test
1818
script:
1919
- npm ci

0 commit comments

Comments
 (0)