Skip to content

Commit 7582e94

Browse files
committed
Update Go & dependencies
Signed-off-by: Matthias Rampke <[email protected]>
1 parent cf47e46 commit 7582e94

File tree

4 files changed

+57
-68
lines changed

4 files changed

+57
-68
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ executors:
55
# Whenever the Go version is updated here, .promu.yml should also be updated.
66
golang:
77
docker:
8-
- image: cimg/go:1.21
8+
- image: cimg/go:1.22
99
jobs:
1010
test:
1111
executor: golang

.promu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
go:
22
# Whenever the Go version is updated here, .travis.yml and
33
# .circle/config.yml should also be updated.
4-
version: 1.21
4+
version: 1.22
55
repository:
66
path: github.com/prometheus/graphite_exporter
77
build:

go.mod

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,45 +6,45 @@ toolchain go1.22.0
66

77
require (
88
github.com/alecthomas/kingpin/v2 v2.4.0
9-
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9
9+
github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30
1010
github.com/go-graphite/go-whisper v0.0.0-20230526115116-e3110f57c01c
1111
github.com/go-kit/log v0.2.1
12-
github.com/prometheus/client_golang v1.19.0
13-
github.com/prometheus/common v0.51.0
12+
github.com/prometheus/client_golang v1.20.0
13+
github.com/prometheus/common v0.55.0
1414
github.com/prometheus/exporter-toolkit v0.11.0
1515
github.com/prometheus/prometheus v1.8.2-0.20210119214810-e4487274853c
16-
github.com/prometheus/statsd_exporter v0.26.1
16+
github.com/prometheus/statsd_exporter v0.27.1
1717
github.com/stretchr/testify v1.9.0
1818
)
1919

2020
require (
2121
github.com/beorn7/perks v1.0.1 // indirect
22-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
22+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2323
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
2424
github.com/davecgh/go-spew v1.1.1 // indirect
2525
github.com/go-kit/kit v0.13.0 // indirect
2626
github.com/go-logfmt/logfmt v0.6.0 // indirect
2727
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
28-
github.com/golang/protobuf v1.5.4 // indirect
2928
github.com/golang/snappy v0.0.4 // indirect
3029
github.com/jpillora/backoff v1.0.0 // indirect
30+
github.com/klauspost/compress v1.17.9 // indirect
31+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3132
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
3233
github.com/oklog/ulid v1.3.1 // indirect
3334
github.com/pkg/errors v0.9.1 // indirect
3435
github.com/pmezard/go-difflib v1.0.0 // indirect
35-
github.com/prometheus/client_model v0.6.0 // indirect
36-
github.com/prometheus/procfs v0.13.0 // indirect
36+
github.com/prometheus/client_model v0.6.1 // indirect
37+
github.com/prometheus/procfs v0.15.1 // indirect
3738
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
3839
go.uber.org/atomic v1.11.0 // indirect
3940
go.uber.org/goleak v1.1.11-0.20210813005559-691160354723 // indirect
40-
golang.org/x/crypto v0.21.0 // indirect
41-
golang.org/x/net v0.22.0 // indirect
42-
golang.org/x/oauth2 v0.18.0 // indirect
43-
golang.org/x/sync v0.6.0 // indirect
44-
golang.org/x/sys v0.18.0 // indirect
45-
golang.org/x/text v0.14.0 // indirect
46-
google.golang.org/appengine v1.6.8 // indirect
47-
google.golang.org/protobuf v1.33.0 // indirect
41+
golang.org/x/crypto v0.26.0 // indirect
42+
golang.org/x/net v0.28.0 // indirect
43+
golang.org/x/oauth2 v0.22.0 // indirect
44+
golang.org/x/sync v0.8.0 // indirect
45+
golang.org/x/sys v0.24.0 // indirect
46+
golang.org/x/text v0.17.0 // indirect
47+
google.golang.org/protobuf v1.34.2 // indirect
4848
gopkg.in/yaml.v2 v2.4.0 // indirect
4949
gopkg.in/yaml.v3 v3.0.1 // indirect
5050
)

0 commit comments

Comments
 (0)