Skip to content

Commit 8639779

Browse files
authored
Update Go to 1.17 (#19)
1 parent a667eef commit 8639779

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ executors:
1010
# also be updated.
1111
golang:
1212
docker:
13-
- image: circleci/golang:1.16
13+
- image: circleci/golang:1.17
1414

1515
jobs:
1616
test:

.promu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
go:
2-
version: 1.16
2+
version: 1.17
33
cgo: true
44
repository:
55
path: github.com/treydock/cgroup_exporter

go.mod

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,31 @@
11
module github.com/treydock/cgroup_exporter
22

3-
go 1.16
3+
go 1.17
44

55
require (
6-
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
76
github.com/containerd/cgroups v1.0.1
8-
github.com/coreos/go-systemd/v22 v22.3.1 // indirect
97
github.com/go-kit/kit v0.10.0
10-
github.com/golang/protobuf v1.5.2 // indirect
118
github.com/prometheus/client_golang v1.10.0
129
github.com/prometheus/common v0.21.0
1310
github.com/prometheus/procfs v0.6.0
14-
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
1511
gopkg.in/alecthomas/kingpin.v2 v2.2.6
1612
)
13+
14+
require (
15+
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
16+
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
17+
github.com/beorn7/perks v1.0.1 // indirect
18+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
19+
github.com/coreos/go-systemd/v22 v22.3.1 // indirect
20+
github.com/docker/go-units v0.4.0 // indirect
21+
github.com/go-logfmt/logfmt v0.5.0 // indirect
22+
github.com/godbus/dbus/v5 v5.0.4 // indirect
23+
github.com/gogo/protobuf v1.3.2 // indirect
24+
github.com/golang/protobuf v1.5.2 // indirect
25+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
26+
github.com/opencontainers/runtime-spec v1.0.2 // indirect
27+
github.com/pkg/errors v0.9.1 // indirect
28+
github.com/prometheus/client_model v0.2.0 // indirect
29+
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
30+
google.golang.org/protobuf v1.26.0 // indirect
31+
)

0 commit comments

Comments
 (0)