Skip to content

Commit 7170258

Browse files
committed
Upgrade Node.js version to 24 in workflow files and configuration
1 parent e2f6500 commit 7170258

File tree

11 files changed

+11
-10
lines changed

11 files changed

+11
-10
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: [22]
19+
node-version: [24]
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: [22]
19+
node-version: [24]
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: [22]
16+
node-version: [24]
1717
steps:
1818
- name: Techor Actions
1919
uses: techor-dev/techor@main

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- uses: actions/setup-node@v4
2626
with:
2727
node-version: 22
28+
registry-url: 'https://registry.npmjs.org'
2829
cache: "pnpm"
2930
- run: pnpm install
3031
- 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: [22]
13+
node-version: [24]
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: [22]
19+
node-version: [24]
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: [22]
19+
node-version: [24]
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-
v22.11.0
1+
v24.12.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"url": "https://github.com/techor-dev/techor/issues"
1919
},
2020
"engines": {
21-
"node": "^22.11.0"
21+
"node": "^24.12.0"
2222
},
2323
"repository": {
2424
"type": "git",

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: [22]
130+
node-version: [24]
131131
steps:
132132
- uses: actions/checkout@v4
133133
with:

0 commit comments

Comments
 (0)