Skip to content

Commit ecbd667

Browse files
chore: update Node.js to version 24.x
1 parent 7e9e2f0 commit ecbd667

File tree

14 files changed

+20
-35
lines changed

14 files changed

+20
-35
lines changed

.github/actions/configure-and-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ runs:
99
- name: Setup Node.js
1010
uses: actions/setup-node@v6
1111
with:
12-
node-version: 22.20.0
12+
node-version-file: .nvmrc
1313
cache: yarn
1414

1515
- name: Determine Cypress Version

.github/actions/perform-integration-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runs:
1818
- name: Setup Node.js
1919
uses: actions/setup-node@v6
2020
with:
21-
node-version: 22.20.0
21+
node-version-file: .nvmrc
2222
cache: yarn
2323

2424
- name: Configure and Build

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
- name: Set up Node.js
153153
uses: actions/setup-node@v6
154154
with:
155-
node-version: 22.20.0
155+
node-version-file: .nvmrc
156156
cache: yarn
157157

158158
- name: Install Dependencies

.github/workflows/deploy-content-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100

101101
- uses: actions/setup-node@v6
102102
with:
103-
node-version: 22.20.0
103+
node-version-file: .nvmrc
104104
cache: yarn
105105

106106
- uses: ./.github/actions/deploy

.github/workflows/deploy-dev-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
- uses: actions/checkout@v6
115115
- uses: actions/setup-node@v6
116116
with:
117-
node-version: 22.20.0
117+
node-version-file: .nvmrc
118118
cache: yarn
119119
- name: Download Build Workspace
120120
uses: actions/download-artifact@v6

.github/workflows/deploy-staging-environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ jobs:
105105
- name: Checkout Repository
106106
uses: actions/checkout@v6
107107

108-
- name: Set up Node.js 22.20.0
108+
- name: Set up Node.js
109109
uses: actions/setup-node@v6
110110
with:
111-
node-version: 22.20.0
111+
node-version-file: .nvmrc
112112
cache: yarn
113113

114114
- name: Deploy to Staging

.github/workflows/release-pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
environment: prod
3535
steps:
3636
- uses: actions/checkout@v6
37-
- name: Set up Node.js 22.20.0
37+
- name: Set up Node.js
3838
uses: actions/setup-node@v6
3939
with:
40-
node-version: 22.20.0
40+
node-version-file: .nvmrc
4141
cache: yarn
4242
- uses: actions/cache@v5
4343
with:
@@ -63,10 +63,10 @@ jobs:
6363
- name: Checkout Repository
6464
uses: actions/checkout@v6
6565

66-
- name: Set up Node.js 22.20.0
66+
- name: Set up Node.js
6767
uses: actions/setup-node@v6
6868
with:
69-
node-version: 22.20.0
69+
node-version-file: .nvmrc
7070
cache: yarn
7171

7272
- name: Export Production Environment Variables

.github/workflows/testing-deployment-trigger.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ jobs:
111111
- name: Checkout Repository
112112
uses: actions/checkout@v6
113113

114-
- name: Set up Node.js 22.20.0
114+
- name: Set up Node.js
115115
uses: actions/setup-node@v6
116116
with:
117-
node-version: 22.20.0
117+
node-version-file: .nvmrc
118118
cache: yarn
119119
- name: Deploy Testing Environment
120120
uses: ./.github/actions/deploy

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.20.0
1+
24.13.0

BuilderImage.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM cimg/node:22.20.0-browsers
1+
FROM cimg/node:24.13.0-browsers
22

33
USER root
44

0 commit comments

Comments
 (0)