Skip to content

Commit 02a7939

Browse files
authored
chore(deps): bump to go 1.25.7 and deps (#94)
1 parent dede1a6 commit 02a7939

File tree

4 files changed

+108
-135
lines changed

4 files changed

+108
-135
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ARG GOLANG_VERSION=1.22
1+
ARG GOLANG_VERSION=1.25.7
22

3-
FROM golang:${GOLANG_VERSION} as builder
3+
FROM golang:${GOLANG_VERSION} AS builder
44

55
WORKDIR /workspace
66

@@ -12,11 +12,11 @@ RUN cd /workspace && go mod download
1212
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -o main -a cmd/main.go
1313

1414
# Use distroless as minimal base image to package the manager binary
15-
FROM gcr.io/distroless/static-debian11:nonroot
15+
FROM gcr.io/distroless/static-debian13:nonroot
1616

1717
WORKDIR /
1818

19-
LABEL org.opencontainers.image.source https://github.com/ydataai/authentication-service
19+
LABEL org.opencontainers.image.source="https://github.com/ydataai/authentication-service"
2020

2121
COPY --from=builder /workspace/main .
2222

go.mod

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
11
module github.com/ydataai/authentication-service
22

3-
go 1.22
4-
5-
toolchain go1.22.1
3+
go 1.25.7
64

75
require (
8-
github.com/coreos/go-oidc/v3 v3.10.0
9-
github.com/gin-gonic/gin v1.9.1
10-
github.com/golang-jwt/jwt/v5 v5.2.1
6+
github.com/coreos/go-oidc/v3 v3.17.0
7+
github.com/gin-gonic/gin v1.11.0
8+
github.com/golang-jwt/jwt/v5 v5.3.1
119
github.com/kelseyhightower/envconfig v1.4.0
12-
github.com/stretchr/testify v1.9.0
13-
github.com/ydataai/go-core v0.15.1
14-
golang.org/x/oauth2 v0.18.0
10+
github.com/stretchr/testify v1.11.1
11+
github.com/ydataai/go-core v0.15.6
12+
golang.org/x/oauth2 v0.34.0
1513
)
1614

1715
require (
18-
github.com/bytedance/sonic v1.11.3 // indirect
19-
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
20-
github.com/chenzhuoyu/iasm v0.9.1 // indirect
16+
github.com/bytedance/gopkg v0.1.3 // indirect
17+
github.com/bytedance/sonic v1.15.0 // indirect
18+
github.com/bytedance/sonic/loader v0.5.0 // indirect
19+
github.com/cloudwego/base64x v0.1.6 // indirect
2120
github.com/davecgh/go-spew v1.1.1 // indirect
22-
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
23-
github.com/gin-contrib/sse v0.1.0 // indirect
24-
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
21+
github.com/gabriel-vasile/mimetype v1.4.13 // indirect
22+
github.com/gin-contrib/sse v1.1.0 // indirect
23+
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
2524
github.com/go-playground/locales v0.14.1 // indirect
2625
github.com/go-playground/universal-translator v0.18.1 // indirect
27-
github.com/go-playground/validator/v10 v10.19.0 // indirect
28-
github.com/goccy/go-json v0.10.2 // indirect
29-
github.com/golang/protobuf v1.5.4 // indirect
26+
github.com/go-playground/validator/v10 v10.30.1 // indirect
27+
github.com/goccy/go-json v0.10.5 // indirect
28+
github.com/goccy/go-yaml v1.19.2 // indirect
3029
github.com/google/uuid v1.6.0 // indirect
3130
github.com/json-iterator/go v1.1.12 // indirect
32-
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
31+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
3332
github.com/leodido/go-urn v1.4.0 // indirect
3433
github.com/mattn/go-isatty v0.0.20 // indirect
3534
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
36-
github.com/modern-go/reflect2 v1.0.2 // indirect
37-
github.com/pelletier/go-toml/v2 v2.2.0 // indirect
35+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
36+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
3837
github.com/pmezard/go-difflib v1.0.0 // indirect
39-
github.com/sirupsen/logrus v1.9.3 // indirect
38+
github.com/quic-go/qpack v0.6.0 // indirect
39+
github.com/quic-go/quic-go v0.59.0 // indirect
40+
github.com/sirupsen/logrus v1.9.4 // indirect
4041
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
41-
github.com/ugorji/go/codec v1.2.12 // indirect
42-
golang.org/x/arch v0.7.0 // indirect
43-
golang.org/x/crypto v0.21.0 // indirect
44-
golang.org/x/net v0.22.0 // indirect
45-
golang.org/x/sys v0.18.0 // indirect
46-
golang.org/x/text v0.14.0 // indirect
47-
google.golang.org/appengine v1.6.8 // indirect
48-
google.golang.org/protobuf v1.33.0 // indirect
42+
github.com/ugorji/go/codec v1.3.1 // indirect
43+
golang.org/x/arch v0.23.0 // indirect
44+
golang.org/x/crypto v0.47.0 // indirect
45+
golang.org/x/net v0.49.0 // indirect
46+
golang.org/x/sys v0.40.0 // indirect
47+
golang.org/x/text v0.33.0 // indirect
48+
google.golang.org/protobuf v1.36.11 // indirect
4949
gopkg.in/yaml.v3 v3.0.1 // indirect
5050
)

0 commit comments

Comments
 (0)