Skip to content

Commit b77f034

Browse files
committed
Update workflows and utility functions to use Node.js version 22
1 parent 5262a29 commit b77f034

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

.github/workflows/commit-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
node-version: [20]
19+
node-version: [22]
2020
os: [ubuntu-latest]
2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
node-version: [20]
19+
node-version: [22]
2020
os: [ubuntu-latest]
2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/pull-request-title-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: [20]
16+
node-version: [22]
1717
steps:
1818
- name: Techor Actions
1919
uses: techor-dev/techor@main

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
version: 8
2525
- uses: actions/setup-node@v4
2626
with:
27-
node-version: 20
27+
node-version: 22
2828
cache: "pnpm"
2929
- run: pnpm install
3030
- run: pnpm run build

.github/workflows/sync-dev-branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [20]
13+
node-version: [22]
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: ./.github/actions

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
node-version: [20]
19+
node-version: [22]
2020
os: [ubuntu-latest, windows-latest]
2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/type-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
node-version: [20]
19+
node-version: [22]
2020
os: [ubuntu-latest]
2121
steps:
2222
- uses: actions/checkout@v4

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.12.1
1+
v22.11.0

packages/commitlint-config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: ubuntu-latest
128128
strategy:
129129
matrix:
130-
node-version: [20]
130+
node-version: [22]
131131
steps:
132132
- uses: actions/checkout@v4
133133
with:

packages/techor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
runs-on: ubuntu-latest
127127
strategy:
128128
matrix:
129-
node-version: [20]
129+
node-version: [22]
130130
steps:
131131
- uses: actions/checkout@v4
132132
- uses: actions/setup-node@v4

0 commit comments

Comments
 (0)