Skip to content

Commit b428071

Browse files
committed
UPG: server: go.mod
1 parent 64c18c2 commit b428071

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Go
3030
uses: actions/setup-go@v5
3131
with:
32-
go-version: "1.25"
32+
go-version: "1.26"
3333
check-latest: true
3434
cache: true
3535

build/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# syntax=docker.io/docker/dockerfile:1.14
1+
# syntax=docker.io/docker/dockerfile:1.21
22
# https://docs.docker.com/build/dockerfile/frontend/
33

4-
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.25-alpine AS build
4+
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.26-alpine AS build
55

66
ARG MODULE_NAME
77
ARG APP_NAME
@@ -32,6 +32,6 @@ RUN --mount=type=cache,target=/root/.cache/go-build/,id=build-$TARGETARCH \
3232
-o main .
3333

3434
# RedundantTargetPlatform: setting --platform=$TARGETPLATFORM in FROM is the default behavior
35-
FROM gcr.io/distroless/static-debian12:latest
35+
FROM gcr.io/distroless/static-debian13:latest
3636
COPY --from=build /app/main /main
3737
ENTRYPOINT ["/main"]

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module github.com/whoisnian/share-Go
22

3-
go 1.25.0
3+
go 1.26.0
44

5-
require github.com/whoisnian/glb v1.5.7
5+
require github.com/whoisnian/glb v1.6.0
66

7-
require golang.org/x/sys v0.36.0 // indirect
7+
require golang.org/x/sys v0.41.0 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github.com/whoisnian/glb v1.5.7 h1:Oy7A5v2p3XGtySJ7ZR2auU3AI2H2SQ4Sl8A6p40zhmc=
2-
github.com/whoisnian/glb v1.5.7/go.mod h1:56Zhy1cd5X76KFrzu+NGllpz5iZ6TIvNeXFYMYJgLwc=
3-
golang.org/x/sys v0.36.0 h1:KVRy2GtZBrk1cBYA7MKu5bEZFxQk4NIDV6RLVcC8o0k=
4-
golang.org/x/sys v0.36.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
1+
github.com/whoisnian/glb v1.6.0 h1:aXVMNXAOAxIYCbipihDXLy1y2kGSjep9BNmdy5h15s0=
2+
github.com/whoisnian/glb v1.6.0/go.mod h1:rx61PYRrxZlVhy45veD2SJbsE/70ykTDVpMwa+cJt6Y=
3+
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
4+
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=

0 commit comments

Comments
 (0)