Skip to content

Commit 4e20118

Browse files
committed
update node version
1 parent 457a130 commit 4e20118

File tree

7 files changed

+12
-36
lines changed

7 files changed

+12
-36
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Node.js
1212
uses: actions/setup-node@v4
1313
with:
14-
node-version: 22
14+
node-version: 22.13.0
1515
cache: 'npm'
1616
cache-dependency-path: 'web/package-lock.json'
1717
- name: Set up Go

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Node.js
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: 22
22+
node-version: 22.13.0
2323
cache: 'npm'
2424
cache-dependency-path: 'web/package-lock.json'
2525
- name: Set up Go

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build the Next.js frontend
2-
FROM node:22-alpine AS web-builder
2+
FROM node:22.13.0-alpine AS web-builder
33
RUN apk add --no-cache libc6-compat
44
WORKDIR /app
55
COPY web/package.json web/package-lock.json ./web/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ Contributions are welcome! Please feel free to submit a Pull Request.
13421342

13431343
Requirements:
13441344

1345-
- Node.js `22.0.0` or higher
1345+
- Node.js `22.13.0` or higher
13461346
- Go `1.17` or higher
13471347

13481348
The frontend project is built with [Next.js](https://nextjs.org/) and [daisyUI](https://daisyui.com/). To start the development environment, run:

README_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,7 @@ nssm remove YOURSERVICENAME
13401340

13411341
要求:
13421342

1343-
- Node.js `22.0.0` 或更高版本
1343+
- Node.js `22.13.0` 或更高版本
13441344
- Go `1.17` 或更高版本
13451345

13461346
前端项目使用 [Next.js](https://nextjs.org/)[daisyUI](https://daisyui.com/) 构建。要启动开发环境,运行:

web/package-lock.json

Lines changed: 5 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"private": true,
55
"engines": {
6-
"node": ">=22.0.0"
6+
"node": ">=22.13.0"
77
},
88
"scripts": {
99
"dev": "next dev",
@@ -31,6 +31,6 @@
3131
"eslint-config-next": "^16.2.1",
3232
"postcss": "^8.5.8",
3333
"tailwindcss": "^4.1.13",
34-
"typescript": "^6.0.2"
34+
"typescript": "^5.9.3"
3535
}
3636
}

0 commit comments

Comments
 (0)