Skip to content

Commit 07f9f31

Browse files
committed
fix(deps): update deps
1 parent b17de50 commit 07f9f31

File tree

5 files changed

+127
-713
lines changed

5 files changed

+127
-713
lines changed

.tool-versions

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
golang 1.23.2
2+
protoc 3.20.3
3+
protoc-gen-go 1.33.0

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20 as builder
1+
FROM golang:1.23.2 as builder
22
ENV GOOS=linux
33
ENV CGO_ENABLED=0
44
COPY . /src

go.mod

+36-31
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
module github.com/navikt/deployment-event-relays
22

3-
go 1.20
3+
go 1.23.2
44

55
require (
66
github.com/Shopify/sarama v1.28.0
7-
github.com/golang/protobuf v1.5.2
8-
github.com/klauspost/compress v1.12.2 // indirect
9-
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
10-
github.com/nais/liberator v0.0.0-20210503113505-5a8c9b9e1ca6
11-
github.com/prometheus/client_golang v1.11.1
7+
github.com/klauspost/compress v1.17.11 // indirect
8+
github.com/nais/liberator v0.0.0-20241216095017-87471bb214d0
9+
github.com/prometheus/client_golang v1.20.5
1210
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
13-
github.com/sirupsen/logrus v1.6.0
11+
github.com/sirupsen/logrus v1.9.3
1412
github.com/spf13/pflag v1.0.5
15-
github.com/spf13/viper v1.3.2
16-
github.com/stretchr/testify v1.7.0
17-
golang.org/x/crypto v0.17.0 // indirect
18-
golang.org/x/net v0.17.0 // indirect
19-
google.golang.org/protobuf v1.26.0
13+
github.com/spf13/viper v1.19.0
14+
github.com/stretchr/testify v1.10.0
15+
golang.org/x/crypto v0.31.0 // indirect
16+
golang.org/x/net v0.32.0 // indirect
17+
google.golang.org/protobuf v1.35.2
2018
)
2119

20+
require github.com/golang/protobuf v1.5.4
21+
2222
require (
2323
github.com/beorn7/perks v1.0.1 // indirect
24-
github.com/cespare/xxhash/v2 v2.1.1 // indirect
25-
github.com/davecgh/go-spew v1.1.1 // indirect
24+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
25+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2626
github.com/eapache/go-resiliency v1.2.0 // indirect
2727
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect
2828
github.com/eapache/queue v1.1.0 // indirect
29-
github.com/fsnotify/fsnotify v1.4.9 // indirect
29+
github.com/fsnotify/fsnotify v1.7.0 // indirect
3030
github.com/golang/snappy v0.0.3 // indirect
3131
github.com/hashicorp/go-uuid v1.0.2 // indirect
3232
github.com/hashicorp/hcl v1.0.0 // indirect
@@ -35,21 +35,26 @@ require (
3535
github.com/jcmturner/gofork v1.0.0 // indirect
3636
github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect
3737
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
38-
github.com/magiconair/properties v1.8.0 // indirect
39-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
40-
github.com/mitchellh/mapstructure v1.1.2 // indirect
41-
github.com/pelletier/go-toml v1.2.0 // indirect
38+
github.com/magiconair/properties v1.8.7 // indirect
39+
github.com/mitchellh/mapstructure v1.5.0 // indirect
40+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
41+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
4242
github.com/pierrec/lz4 v2.6.0+incompatible // indirect
43-
github.com/pmezard/go-difflib v1.0.0 // indirect
44-
github.com/prometheus/client_model v0.2.0 // indirect
45-
github.com/prometheus/common v0.26.0 // indirect
46-
github.com/prometheus/procfs v0.6.0 // indirect
47-
github.com/spf13/afero v1.2.2 // indirect
48-
github.com/spf13/cast v1.3.0 // indirect
49-
github.com/spf13/jwalterweatherman v1.0.0 // indirect
50-
golang.org/x/sys v0.15.0 // indirect
51-
golang.org/x/text v0.14.0 // indirect
52-
gopkg.in/yaml.v2 v2.3.0 // indirect
53-
gopkg.in/yaml.v3 v3.0.0 // indirect
54-
k8s.io/client-go v0.20.0 // indirect
43+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
44+
github.com/prometheus/client_model v0.6.1 // indirect
45+
github.com/prometheus/common v0.55.0 // indirect
46+
github.com/prometheus/procfs v0.15.1 // indirect
47+
github.com/sagikazarmark/locafero v0.4.0 // indirect
48+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
49+
github.com/sourcegraph/conc v0.3.0 // indirect
50+
github.com/spf13/afero v1.11.0 // indirect
51+
github.com/spf13/cast v1.6.0 // indirect
52+
github.com/subosito/gotenv v1.6.0 // indirect
53+
go.uber.org/multierr v1.11.0 // indirect
54+
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
55+
golang.org/x/sys v0.28.0 // indirect
56+
golang.org/x/text v0.21.0 // indirect
57+
gopkg.in/ini.v1 v1.67.0 // indirect
58+
gopkg.in/yaml.v3 v3.0.1 // indirect
59+
k8s.io/client-go v0.30.1 // indirect
5560
)

0 commit comments

Comments
 (0)