diff --git a/.github/actions/build-windows-backend/action.yml b/.github/actions/build-windows-backend/action.yml index bfc64b17..11b299c9 100644 --- a/.github/actions/build-windows-backend/action.yml +++ b/.github/actions/build-windows-backend/action.yml @@ -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" diff --git a/Dockerfile b/Dockerfile index 82a8378f..a430c203 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 " RUN addgroup -S -g 1000 ezbookkeeping && adduser -S -G ezbookkeeping -u 1000 ezbookkeeping RUN apk --no-cache add tzdata diff --git a/go.mod b/go.mod index 361a824b..e11ededc 100644 --- a/go.mod +++ b/go.mod @@ -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