Skip to content

Commit

Permalink
Merge pull request #8 from treydock/go1.14
Browse files Browse the repository at this point in the history
Update to Go 1.14 and update dependencies
  • Loading branch information
treydock authored Oct 1, 2020
2 parents cd0c800 + b4051f0 commit 9640f09
Show file tree
Hide file tree
Showing 4 changed files with 346 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ executors:
# also be updated.
golang:
docker:
- image: circleci/golang:1.13
- image: circleci/golang:1.14

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .promu.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
go:
version: 1.13
version: 1.14
cgo: true
repository:
path: github.com/treydock/cgroup_exporter
Expand Down
13 changes: 9 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
module github.com/treydock/cgroup_exporter

go 1.13
go 1.14

require (
github.com/containerd/cgroups v0.0.0-20200204152634-780d21166089
github.com/prometheus/client_golang v1.4.1
github.com/prometheus/common v0.9.1
github.com/containerd/cgroups v0.0.0-20200824123100-0b889c03f102
github.com/coreos/go-systemd/v22 v22.1.0 // indirect
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/common v0.14.0
github.com/prometheus/procfs v0.2.0 // indirect
github.com/sirupsen/logrus v1.7.0 // indirect
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f // indirect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)
Loading

0 comments on commit 9640f09

Please sign in to comment.