chore: Standardize Go version to 1.24 across Dockerfile, go.mod, GitHub Actions, and documentation.

This commit is contained in:
CJACK
2026-02-16 16:52:05 +08:00
parent dec61b8008
commit c7ed01bfe7
7 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ RUN npm ci
COPY webui ./
RUN npm run build
FROM golang:1.25 AS go-builder
FROM golang:1.24 AS go-builder
WORKDIR /app
COPY go.mod go.sum* ./
RUN go mod download