upgrade golang to 1.26.2, node.js to 24.15.0 and alpine base image to 3.23.4

This commit is contained in:
MaysWind
2026-04-24 00:03:09 +08:00
parent 1d5a6562f3
commit 9dcbf1aa7e
3 changed files with 5 additions and 5 deletions
@@ -3,7 +3,7 @@ name: Build backend file for windows
inputs:
go-version:
required: false
default: "1.25.7"
default: "1.26.2"
mingw-version:
required: false
default: "15.2.0"
+3 -3
View File
@@ -1,5 +1,5 @@
# Build backend binary file
FROM golang:1.25.7-alpine3.23 AS be-builder
FROM golang:1.26.2-alpine3.23 AS be-builder
ARG RELEASE_BUILD
ARG BUILD_PIPELINE
ARG BUILD_UNIXTIME
@@ -19,7 +19,7 @@ RUN apk add git gcc g++ libc-dev
RUN ./build.sh backend
# Build frontend files
FROM --platform=$BUILDPLATFORM node:24.14.0-alpine3.23 AS fe-builder
FROM --platform=$BUILDPLATFORM node:24.15.0-alpine3.23 AS fe-builder
ARG RELEASE_BUILD
ARG BUILD_PIPELINE
ARG BUILD_UNIXTIME
@@ -35,7 +35,7 @@ RUN apk add git
RUN ./build.sh frontend
# Package docker image
FROM alpine:3.23.3
FROM alpine:3.23.4
LABEL maintainer="MaysWind <i@mayswind.net>"
RUN addgroup -S -g 1000 ezbookkeeping && adduser -S -G ezbookkeeping -u 1000 ezbookkeeping
RUN apk --no-cache add tzdata
+1 -1
View File
@@ -1,6 +1,6 @@
module github.com/mayswind/ezbookkeeping
go 1.25.0
go 1.26.0
require (
github.com/boombuler/barcode v1.1.0