Skip to content

Commit 5154a6c

Browse files
committed
Update dependencies to latest releases
Also require go 1.14, which is the oldest still maintained golang version (and some of the dependencies require at least 1.14)
1 parent 9a081f6 commit 5154a6c

File tree

5 files changed

+425
-62
lines changed

5 files changed

+425
-62
lines changed

.github/workflows/exporter-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/setup-go@v2
2828
with:
29-
go-version: ^1.12
29+
go-version: ^1.14
3030
id: go
3131
- uses: actions/checkout@v2
3232
with:

go.mod

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module github.com/ClusterLabs/ha_cluster_exporter
22

3-
go 1.12
3+
go 1.14
44

55
require (
6-
github.com/golang/mock v1.4.3
7-
github.com/pkg/errors v0.8.0
8-
github.com/prometheus/client_golang v1.1.0
9-
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
10-
github.com/sirupsen/logrus v1.4.2
6+
github.com/golang/mock v1.5.0
7+
github.com/pkg/errors v0.9.1
8+
github.com/prometheus/client_golang v1.10.0
9+
github.com/prometheus/client_model v0.2.0
10+
github.com/sirupsen/logrus v1.8.1
1111
github.com/spf13/pflag v1.0.5
12-
github.com/spf13/viper v1.5.0
13-
github.com/stretchr/testify v1.3.0
12+
github.com/spf13/viper v1.7.1
13+
github.com/stretchr/testify v1.7.0
1414
)

0 commit comments

Comments
 (0)