-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to golang 1.17 and update deps
Signed-off-by: Markus Blaschke <[email protected]>
- Loading branch information
Showing
3 changed files
with
34 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16 as build | ||
FROM golang:1.17 as build | ||
|
||
WORKDIR /go/src/github.com/webdevops/azure-metrics-exporter | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,40 @@ | ||
module github.com/webdevops/azure-metrics-exporter | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go v56.0.0+incompatible | ||
github.com/Azure/go-autorest/autorest v0.11.19 | ||
github.com/Azure/go-autorest/autorest/adal v0.9.14 // indirect | ||
github.com/Azure/azure-sdk-for-go v57.0.0+incompatible | ||
github.com/Azure/go-autorest/autorest v0.11.20 | ||
github.com/Azure/go-autorest/autorest/adal v0.9.15 // indirect | ||
github.com/Azure/go-autorest/autorest/azure/auth v0.5.8 | ||
github.com/Azure/go-autorest/autorest/to v0.4.0 | ||
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect | ||
github.com/ChannelMeter/iso8601duration v0.0.0-20150204201828-8da3af7a2a61 | ||
github.com/channelmeter/iso8601duration v0.0.0-20150204201828-8da3af7a2a61 // indirect | ||
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/common v0.30.0 // indirect | ||
github.com/prometheus/procfs v0.7.1 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
github.com/remeh/sizedwaitgroup v1.0.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect | ||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
) | ||
|
||
require ( | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest/azure/cli v0.4.3 // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.1 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/dimchansky/utfbom v1.1.1 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.0.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters