-
Notifications
You must be signed in to change notification settings - Fork 58
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 <mblaschke82@gmail.com>
- Loading branch information
Showing
3 changed files
with
17 additions
and
12 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-devops-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,18 +1,25 @@ | ||
module github.com/webdevops/azure-devops-exporter | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
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/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/common v0.30.0 // indirect | ||
github.com/prometheus/procfs v0.7.2 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/webdevops/go-prometheus-common v0.0.0-20200601190815-465c9d5d262b | ||
github.com/webdevops/go-prometheus-common v0.0.0-20210809194707-405356861065 | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect | ||
golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/resty.v1 v1.12.0 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/patrickmn/go-cache v2.1.0+incompatible // 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