Skip to content

Commit dc6cefc

Browse files
committed
Use Node v22 LTS
1 parent 0efa502 commit dc6cefc

11 files changed

Lines changed: 25 additions & 25 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- uses: pnpm/action-setup@v4
6363
- uses: actions/setup-node@v4
6464
with:
65-
node-version: 18
65+
node-version: 22
6666
cache: pnpm
6767
- name: Install Dependencies
6868
run: pnpm install --frozen-lockfile
@@ -86,7 +86,7 @@ jobs:
8686
- uses: pnpm/action-setup@v4
8787
- uses: actions/setup-node@v4
8888
with:
89-
node-version: 18
89+
node-version: 22
9090
cache: pnpm
9191
- name: Install Dependencies
9292
run: pnpm install --frozen-lockfile
@@ -108,7 +108,7 @@ jobs:
108108
- uses: pnpm/action-setup@v4
109109
- uses: actions/setup-node@v4
110110
with:
111-
node-version: 18
111+
node-version: 22
112112
cache: pnpm
113113
- name: Install Dependencies
114114
run: pnpm install --frozen-lockfile

.github/workflows/plan-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- uses: pnpm/action-setup@v4
5555
- uses: actions/setup-node@v4
5656
with:
57-
node-version: 18
57+
node-version: 22
5858
cache: pnpm
5959
- run: pnpm install --frozen-lockfile
6060
- name: "Generate Explanation and Prep Changelogs"

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: pnpm/action-setup@v4
3232
- uses: actions/setup-node@v4
3333
with:
34-
node-version: 18
34+
node-version: 22
3535
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
3636
registry-url: 'https://registry.npmjs.org'
3737
cache: pnpm

files/.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: pnpm/action-setup@v4<% } %>
2323
- uses: actions/setup-node@v4
2424
with:
25-
node-version: 18
25+
node-version: 22
2626
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
2727
- name: Install Dependencies
2828
run: <%= pnpm ? 'pnpm install --frozen-lockfile' : yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %>
@@ -41,7 +41,7 @@ jobs:
4141
- uses: pnpm/action-setup@v4<% } %>
4242
- uses: actions/setup-node@v4
4343
with:
44-
node-version: 18
44+
node-version: 22
4545
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
4646
- name: Install Dependencies
4747
run: <%= pnpm ? 'pnpm install --frozen-lockfile' : yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %>
@@ -63,7 +63,7 @@ jobs:
6363
- uses: pnpm/action-setup@v4<% } %>
6464
- uses: actions/setup-node@v4
6565
with:
66-
node-version: 18
66+
node-version: 22
6767
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
6868
- name: Install Dependencies
6969
run: <%= pnpm ? 'pnpm install --no-lockfile' : yarn ? 'yarn install --no-lockfile' : 'npm install --no-package-lock' %>
@@ -84,7 +84,7 @@ jobs:
8484
- uses: pnpm/action-setup@v4<% } %>
8585
- uses: actions/setup-node@v4
8686
with:
87-
node-version: 18
87+
node-version: 22
8888
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
8989
- name: Apply Scenario
9090
run: |

files/.github/workflows/push-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: pnpm/action-setup@v4<% } %>
2525
- uses: actions/setup-node@v4
2626
with:
27-
node-version: 18
27+
node-version: 22
2828
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
2929
- name: Install Dependencies
3030
run: <%= pnpm ? 'pnpm install --frozen-lockfile' : yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %>

tests/fixtures/default/.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-node@v4
2323
with:
24-
node-version: 18
24+
node-version: 22
2525
cache: npm
2626
- name: Install Dependencies
2727
run: npm ci
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v4
4040
- uses: actions/setup-node@v4
4141
with:
42-
node-version: 18
42+
node-version: 22
4343
cache: npm
4444
- name: Install Dependencies
4545
run: npm ci
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@v4
6161
- uses: actions/setup-node@v4
6262
with:
63-
node-version: 18
63+
node-version: 22
6464
cache: npm
6565
- name: Install Dependencies
6666
run: npm install --no-package-lock
@@ -80,7 +80,7 @@ jobs:
8080
- uses: actions/checkout@v4
8181
- uses: actions/setup-node@v4
8282
with:
83-
node-version: 18
83+
node-version: 22
8484
cache: npm
8585
- name: Apply Scenario
8686
run: |

tests/fixtures/default/.github/workflows/push-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v4
2424
- uses: actions/setup-node@v4
2525
with:
26-
node-version: 18
26+
node-version: 22
2727
cache: npm
2828
- name: Install Dependencies
2929
run: npm ci

tests/fixtures/pnpm/.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: pnpm/action-setup@v4
2323
- uses: actions/setup-node@v4
2424
with:
25-
node-version: 18
25+
node-version: 22
2626
cache: pnpm
2727
- name: Install Dependencies
2828
run: pnpm install --frozen-lockfile
@@ -41,7 +41,7 @@ jobs:
4141
- uses: pnpm/action-setup@v4
4242
- uses: actions/setup-node@v4
4343
with:
44-
node-version: 18
44+
node-version: 22
4545
cache: pnpm
4646
- name: Install Dependencies
4747
run: pnpm install --frozen-lockfile
@@ -63,7 +63,7 @@ jobs:
6363
- uses: pnpm/action-setup@v4
6464
- uses: actions/setup-node@v4
6565
with:
66-
node-version: 18
66+
node-version: 22
6767
cache: pnpm
6868
- name: Install Dependencies
6969
run: pnpm install --no-lockfile
@@ -84,7 +84,7 @@ jobs:
8484
- uses: pnpm/action-setup@v4
8585
- uses: actions/setup-node@v4
8686
with:
87-
node-version: 18
87+
node-version: 22
8888
cache: pnpm
8989
- name: Apply Scenario
9090
run: |

tests/fixtures/pnpm/.github/workflows/push-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: pnpm/action-setup@v4
2525
- uses: actions/setup-node@v4
2626
with:
27-
node-version: 18
27+
node-version: 22
2828
cache: pnpm
2929
- name: Install Dependencies
3030
run: pnpm install --frozen-lockfile

tests/fixtures/yarn/.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-node@v4
2323
with:
24-
node-version: 18
24+
node-version: 22
2525
cache: yarn
2626
- name: Install Dependencies
2727
run: yarn install --frozen-lockfile
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v4
3838
- uses: actions/setup-node@v4
3939
with:
40-
node-version: 18
40+
node-version: 22
4141
cache: yarn
4242
- name: Install Dependencies
4343
run: yarn install --frozen-lockfile
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v4
5454
- uses: actions/setup-node@v4
5555
with:
56-
node-version: 18
56+
node-version: 22
5757
cache: yarn
5858
- name: Install Dependencies
5959
run: yarn install --no-lockfile
@@ -82,7 +82,7 @@ jobs:
8282
- uses: actions/checkout@v4
8383
- uses: actions/setup-node@v4
8484
with:
85-
node-version: 18
85+
node-version: 22
8686
cache: yarn
8787
- name: Install Dependencies
8888
run: yarn install --frozen-lockfile

0 commit comments

Comments
 (0)