Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
Update dependencies, move to go 1.17 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrueg authored Mar 12, 2022
1 parent e5b7f1b commit 8a6a6f2
Show file tree
Hide file tree
Showing 3 changed files with 266 additions and 57 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
core:
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
go-version: [1.16.x, 1.17.x]
platform: [ubuntu-latest]
name: Build
runs-on: ${{ matrix.platform }}
Expand Down
25 changes: 21 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
module github.com/greenpau/gobgp_exporter

go 1.14
go 1.17

require (
github.com/osrg/gobgp v0.0.0-20210801043420-9e48a36ed97c
github.com/osrg/gobgp v0.0.0-20211201041502-6248c576b118
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/common v0.26.0
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d
google.golang.org/grpc v1.40.0
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
google.golang.org/grpc v1.45.0
)

require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
)
Loading

0 comments on commit 8a6a6f2

Please sign in to comment.