Skip to content

Commit d25fe92

Browse files
authored
[web] Node 20 => 22 (#5562)
Contributors do not necessarily need to update to node 22, I tested that the dev server works with node 20 also. That said, if someone wishes to update - here is the dance I needed to do on macOS. Garnish to taste and OS. ```sh brew uninstall node@20 brew install node@22 brew link node@22 corepack disable corepack enable ```
2 parents 76e7f69 + 51f1319 commit d25fe92

File tree

15 files changed

+24
-24
lines changed

15 files changed

+24
-24
lines changed

.github/workflows/desktop-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup node and enable yarn caching
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 20
26+
node-version: 22
2727
cache: "yarn"
2828
cache-dependency-path: "desktop/yarn.lock"
2929

.github/workflows/docs-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup node and enable yarn caching
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: 20
31+
node-version: 22
3232
cache: "yarn"
3333
cache-dependency-path: "docs/yarn.lock"
3434

.github/workflows/docs-verify-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup node and enable yarn caching
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: 20
31+
node-version: 22
3232
cache: "yarn"
3333
cache-dependency-path: "docs/yarn.lock"
3434

.github/workflows/infra-deploy-staff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup node and enable yarn caching
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: 20
31+
node-version: 22
3232
cache: "yarn"
3333
cache-dependency-path: "infra/staff/yarn.lock"
3434

.github/workflows/infra-lint-staff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup node and enable yarn caching
2626
uses: actions/setup-node@v4
2727
with:
28-
node-version: 20
28+
node-version: 22
2929
cache: "yarn"
3030
cache-dependency-path: "infra/staff/yarn.lock"
3131

.github/workflows/web-deploy-one.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup node and enable yarn caching
3434
uses: actions/setup-node@v4
3535
with:
36-
node-version: 20
36+
node-version: 22
3737
cache: "yarn"
3838
cache-dependency-path: "web/yarn.lock"
3939

.github/workflows/web-deploy-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup node and enable yarn caching
3434
uses: actions/setup-node@v4
3535
with:
36-
node-version: 20
36+
node-version: 22
3737
cache: "yarn"
3838
cache-dependency-path: "web/yarn.lock"
3939

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup node and enable yarn caching
4242
uses: actions/setup-node@v4
4343
with:
44-
node-version: 20
44+
node-version: 22
4545
cache: "yarn"
4646
cache-dependency-path: "web/yarn.lock"
4747

.github/workflows/web-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Setup node and enable yarn caching
3838
uses: actions/setup-node@v4
3939
with:
40-
node-version: 20
40+
node-version: 22
4141
cache: "yarn"
4242
cache-dependency-path: "web/yarn.lock"
4343

.github/workflows/web-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup node and enable yarn caching
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: 20
31+
node-version: 22
3232
cache: "yarn"
3333
cache-dependency-path: "web/yarn.lock"
3434

0 commit comments

Comments
 (0)