Skip to content

Commit 8758c83

Browse files
Update Node LTS (#2576)
* Update Node LTS * Fix typo that was introduced while resolving a conflict * Fix whitespace --------- Co-authored-by: Cool-Katt <[email protected]>
1 parent 00b5abf commit 8758c83

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/action-format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ jobs:
6363
- name: Enable corepack to fix https://github.com/actions/setup-node/pull/901
6464
run: corepack enable pnpm
6565

66-
- name: Use Node.js LTS (20.x)
67-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
66+
- name: Use Node.js LTS (22.x)
67+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
6868
with:
69-
node-version: 20.x
69+
node-version: 22.x
7070
cache: 'pnpm'
7171

7272
- name: Install project development dependencies

.github/workflows/ci.js.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Enable corepack to fix https://github.com/actions/setup-node/pull/901
1717
run: corepack enable pnpm
1818

19-
- name: Use Node.js LTS (20.x)
20-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
19+
- name: Use Node.js LTS (22.x)
20+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
2121
with:
22-
node-version: 20.x
22+
node-version: 22.x
2323
cache: 'pnpm'
2424

2525
- name: Install project dependencies
@@ -33,7 +33,7 @@ jobs:
3333

3434
strategy:
3535
matrix:
36-
node-version: [20.x, 22.x]
36+
node-version: [22.x]
3737

3838
steps:
3939
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

.github/workflows/pr.ci.js.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
- name: Enable corepack to fix https://github.com/actions/setup-node/pull/901
2828
run: corepack enable pnpm
2929

30-
- name: Use Node.js LTS (20.x)
31-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
30+
- name: Use Node.js LTS (22.x)
31+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
3232
with:
33-
node-version: 20.x
33+
node-version: 22.x
3434
cache: 'pnpm'
3535

3636
- name: Install project dependencies
@@ -44,7 +44,7 @@ jobs:
4444

4545
strategy:
4646
matrix:
47-
node-version: [20.x, 22.x]
47+
node-version: [22.x]
4848

4949
steps:
5050
- name: Checkout PR

0 commit comments

Comments
 (0)