Skip to content

Commit 0592388

Browse files
committed
FIX image vulnerabilities
1 parent 8944abd commit 0592388

File tree

3 files changed

+60
-506
lines changed

3 files changed

+60
-506
lines changed

go.mod

+20-10
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,36 @@
11
module github.com/prometheus-community/elasticsearch_exporter
22

3-
go 1.17
3+
go 1.21
4+
5+
toolchain go1.22.0
46

57
require (
6-
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
8+
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
79
github.com/blang/semver v3.5.2-0.20180723201105-3c1074078d32+incompatible
810
github.com/go-kit/log v0.2.1
911
github.com/imdario/mergo v0.3.15
10-
github.com/prometheus/client_golang v1.15.0
11-
github.com/prometheus/common v0.42.0
12+
github.com/prometheus/client_golang v1.19.1
13+
github.com/prometheus/common v0.53.0 // indirect
1214
gopkg.in/alecthomas/kingpin.v2 v2.2.6
1315
)
1416

1517
require (
18+
github.com/Masterminds/semver/v3 v3.2.1 // indirect
19+
github.com/alecthomas/kingpin/v2 v2.4.0 // indirect
1620
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
1721
github.com/beorn7/perks v1.0.1 // indirect
1822
github.com/cespare/xxhash/v2 v2.2.0 // indirect
1923
github.com/go-logfmt/logfmt v0.5.1 // indirect
20-
github.com/golang/protobuf v1.5.3 // indirect
21-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
22-
github.com/prometheus/client_model v0.3.0 // indirect
23-
github.com/prometheus/procfs v0.9.0 // indirect
24-
golang.org/x/sys v0.6.0 // indirect
25-
google.golang.org/protobuf v1.30.0 // indirect
24+
github.com/google/go-github/v25 v25.1.3 // indirect
25+
github.com/google/go-querystring v1.1.0 // indirect
26+
github.com/prometheus/client_model v0.6.0 // indirect
27+
github.com/prometheus/procfs v0.12.0 // indirect
28+
github.com/prometheus/promu v0.17.0 // indirect
29+
github.com/stretchr/testify v1.8.2 // indirect
30+
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
31+
go.uber.org/atomic v1.11.0 // indirect
32+
golang.org/x/oauth2 v0.20.0 // indirect
33+
golang.org/x/sys v0.18.0 // indirect
34+
google.golang.org/protobuf v1.33.0 // indirect
35+
gopkg.in/yaml.v2 v2.4.0 // indirect
2636
)

0 commit comments

Comments
 (0)