Skip to content

Commit 6713dd7

Browse files
authored
Merge pull request #57 from NETWAYS/cleanup-dependencies
Remove some third party dependencies
2 parents 08984d0 + 6245226 commit 6713dd7

File tree

4 files changed

+6
-577
lines changed

4 files changed

+6
-577
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
with:
2222
go-version: 1.19
2323

24+
- name: Vet
25+
run: go vet ./...
26+
2427
- name: Test
2528
run: go test -v ./...
2629

go.mod

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,21 @@ go 1.19
44

55
require (
66
github.com/NETWAYS/go-check v0.3.0
7-
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f
87
github.com/spf13/cobra v1.6.1
9-
golang.org/x/net v0.4.0
108
golang.org/x/oauth2 v0.3.0
119
gopkg.in/yaml.v2 v2.4.0
1210
)
1311

1412
require (
15-
github.com/beorn7/perks v1.0.1 // indirect
16-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
1713
github.com/golang/protobuf v1.5.2 // indirect
1814
github.com/inconshreveable/mousetrap v1.0.1 // indirect
19-
github.com/jpillora/backoff v1.0.0 // indirect
20-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
15+
github.com/kr/pretty v0.1.0 // indirect
2116
github.com/mitchellh/go-ps v1.0.0 // indirect
22-
github.com/prometheus/client_golang v1.14.0 // indirect
23-
github.com/prometheus/client_model v0.3.0 // indirect
24-
github.com/prometheus/common v0.37.0 // indirect
25-
github.com/prometheus/procfs v0.8.0 // indirect
2617
github.com/sirupsen/logrus v1.8.1 // indirect
2718
github.com/spf13/pflag v1.0.5 // indirect
19+
golang.org/x/net v0.4.0 // indirect
2820
golang.org/x/sys v0.3.0 // indirect
29-
golang.org/x/text v0.5.0 // indirect
3021
google.golang.org/appengine v1.6.7 // indirect
3122
google.golang.org/protobuf v1.28.1 // indirect
23+
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
3224
)

0 commit comments

Comments
 (0)