Skip to content

Commit 0d02624

Browse files
authored
Merge pull request #1 from ianunruh/golang-1.17-upgrade
Upgrade to Golang 1.17, latest deps
2 parents 2473755 + 7380b27 commit 0d02624

File tree

3 files changed

+229
-57
lines changed

3 files changed

+229
-57
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:alpine as build
1+
FROM golang:1.17-alpine as build
22

33
WORKDIR /go/src/app
44

go.mod

+23-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,30 @@
11
module github.com/ianunruh/ambient-exporter
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/prometheus/client_golang v1.11.0
7-
github.com/spf13/cobra v1.2.1
7+
github.com/spf13/cobra v1.3.0
88
github.com/stretchr/testify v1.7.0
9-
go.uber.org/zap v1.18.1
9+
go.uber.org/zap v1.20.0
10+
)
11+
12+
require (
13+
github.com/beorn7/perks v1.0.1 // indirect
14+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
15+
github.com/davecgh/go-spew v1.1.1 // indirect
16+
github.com/golang/protobuf v1.5.2 // indirect
17+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
18+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
19+
github.com/pmezard/go-difflib v1.0.0 // indirect
20+
github.com/prometheus/client_model v0.2.0 // indirect
21+
github.com/prometheus/common v0.32.1 // indirect
22+
github.com/prometheus/procfs v0.7.3 // indirect
23+
github.com/spf13/pflag v1.0.5 // indirect
24+
github.com/stretchr/objx v0.1.1 // indirect
25+
go.uber.org/atomic v1.9.0 // indirect
26+
go.uber.org/multierr v1.7.0 // indirect
27+
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
28+
google.golang.org/protobuf v1.27.1 // indirect
29+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
1030
)

0 commit comments

Comments
 (0)