Skip to content

Commit 102383e

Browse files
authored
Remove bingo-upgrade Makefile target (#2234)
It is not referred in any of CI workflows, nor documented in the contribution guide. Also, its usage is questionable given that it tries to upgrade all tools to the latest version at once. Typically such upgrades are performed in a more controlled way, one PR per tool, either by developer or dependbot. Developers are still able to initiate an update by invoking ``` bingo get [email protected] ```
1 parent 0faf118 commit 102383e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Makefile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,6 @@ fix-lint: $(GOLANGCI_LINT) #EXHELP Fix lint issues
189189
fmt: #EXHELP Formats code
190190
go fmt ./...
191191

192-
.PHONY: bingo-upgrade
193-
bingo-upgrade: $(BINGO) #EXHELP Upgrade tools
194-
@for pkg in $$($(BINGO) list | awk '{ print $$3 }' | tail -n +3 | sed 's/@.*//'); do \
195-
echo -e "Upgrading \033[35m$$pkg\033[0m to latest..."; \
196-
$(BINGO) get "$$pkg@latest"; \
197-
done
198-
199192
.PHONY: verify-crd-compatibility
200193
CRD_DIFF_ORIGINAL_REF := git://main?path=
201194
CRD_DIFF_UPDATED_REF := file://

0 commit comments

Comments
 (0)