Skip to content

Commit 5098a6a

Browse files
committed
fix: update version actions, node 22
1 parent b8e2d7c commit 5098a6a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/quality.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [18.x]
12+
node-version: [22.x]
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
cache: "npm"
20+
cache: 'npm'
2121
- run: npm ci
2222
- run: npm run typecheck
2323
- run: npm run lint

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
with:
1717
github-token: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}
1818
npm-token: ${{ secrets.ROBOT_DATAUI_NPM_TOKEN }}
19-
node-version: 18
19+
node-version: 22

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [18.x]
12+
node-version: [22.x]
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
cache: "npm"
20+
cache: 'npm'
2121
- run: npm ci
2222
- run: npm run test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "build/plugin/cjs/index.min.js",
66
"types": "build/plugin/index.d.ts",
77
"engines": {
8-
"node": ">=18",
8+
"node": ">=22",
99
"npm": ">=9.*"
1010
},
1111
"exports": {

0 commit comments

Comments
 (0)