From 25c414d59b484a6b3ea4b2b1959365652b5323be Mon Sep 17 00:00:00 2001 From: Spencer Schrock Date: Mon, 23 Oct 2023 16:35:28 -0700 Subject: [PATCH] :seedling: remove unused osv helper tool. (#3572) This is a followup cleanup of d4b44e52eb9a104949f617a62cf47291d1ea2d99 (#2303). Signed-off-by: Spencer Schrock --- Makefile | 5 ----- tools/go.mod | 1 - tools/go.sum | 2 -- tools/tools.go | 1 - 4 files changed, 9 deletions(-) diff --git a/Makefile b/Makefile index 1c413bf0..c0d05352 100644 --- a/Makefile +++ b/Makefile @@ -35,10 +35,6 @@ KO := $(TOOLS_BIN_DIR)/ko $(KO): $(TOOLS_DIR)/go.mod cd $(TOOLS_DIR); GOBIN=$(TOOLS_BIN_DIR) go install github.com/google/ko -STUNNING_TRIBBLE := $(TOOLS_BIN_DIR)/stunning-tribble -$(STUNNING_TRIBBLE): $(TOOLS_DIR)/go.mod - cd $(TOOLS_DIR); GOBIN=$(TOOLS_BIN_DIR) go install github.com/naveensrinivasan/stunning-tribble - MOCKGEN := $(TOOLS_BIN_DIR)/mockgen $(MOCKGEN): $(TOOLS_DIR)/go.mod cd $(TOOLS_DIR); GOBIN=$(TOOLS_BIN_DIR) go install github.com/golang/mock/mockgen @@ -73,7 +69,6 @@ $(PROTOC): install: ## Installs required binaries. install: $(GOLANGCI_LINT) \ $(KO) \ - $(STUNNING_TRIBBLE) \ $(PROTOC_GEN_GO) $(PROTOC) \ $(MOCKGEN) \ $(GINKGO) \ diff --git a/tools/go.mod b/tools/go.mod index c1167069..f0246337 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -8,7 +8,6 @@ require ( github.com/google/addlicense v1.1.1 github.com/google/ko v0.15.0 github.com/goreleaser/goreleaser v1.20.0 - github.com/naveensrinivasan/stunning-tribble v0.4.2 github.com/onsi/ginkgo/v2 v2.13.0 google.golang.org/protobuf v1.31.0 ) diff --git a/tools/go.sum b/tools/go.sum index aa6cb30b..dfc6f7b8 100644 --- a/tools/go.sum +++ b/tools/go.sum @@ -857,8 +857,6 @@ github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRW github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/nakabonne/nestif v0.3.1 h1:wm28nZjhQY5HyYPx+weN3Q65k6ilSBxDb8v5S81B81U= github.com/nakabonne/nestif v0.3.1/go.mod h1:9EtoZochLn5iUprVDmDjqGKPofoUEBL8U4Ngq6aY7OE= -github.com/naveensrinivasan/stunning-tribble v0.4.2 h1:JD4DSLi9JoRbgxfsBZXE9lnc830TA4/sTQzq1WwR4eU= -github.com/naveensrinivasan/stunning-tribble v0.4.2/go.mod h1:r2dbvNDqCzDSNmw9OjE6u2R5sIwLqnMBuLnpVQrhycI= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nishanths/exhaustive v0.11.0 h1:T3I8nUGhl/Cwu5Z2hfc92l0e04D2GEW6e0l8pzda2l0= github.com/nishanths/exhaustive v0.11.0/go.mod h1:RqwDsZ1xY0dNdqHho2z6X+bgzizwbLYOWnZbbl2wLB4= diff --git a/tools/tools.go b/tools/tools.go index 09108e53..2ff7d10c 100644 --- a/tools/tools.go +++ b/tools/tools.go @@ -24,7 +24,6 @@ import ( _ "github.com/google/ko" _ "github.com/goreleaser/goreleaser" - _ "github.com/naveensrinivasan/stunning-tribble" _ "github.com/onsi/ginkgo/v2/ginkgo" _ "google.golang.org/protobuf/cmd/protoc-gen-go" )