-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Declare the versions of tools allowing for updates by dependabot #2334
Declare the versions of tools allowing for updates by dependabot #2334
Conversation
Hi @mszadkow. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
✅ Deploy Preview for kubernetes-sigs-kueue canceled.
|
/ok-to-test |
f97ef52
to
9717ef5
Compare
hack/internal/tools/pinversion.go
Outdated
@@ -23,4 +23,19 @@ import ( | |||
// we need to reference individual dependencies used by it | |||
_ "sigs.k8s.io/controller-tools/pkg/crd" | |||
_ "sigs.k8s.io/controller-tools/pkg/genall/help/pretty" | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove this unnecessary space?
9717ef5
to
e194a99
Compare
/test all |
e194a99
to
c90bceb
Compare
/retest |
LGTM /assign @trasc |
|
||
HELM = $(PROJECT_DIR)/bin/helm | ||
.PHONY: helm | ||
helm: ## Download helm locally if necessary. | ||
@GOBIN=$(PROJECT_DIR)/bin GO111MODULE=on $(GO_CMD) install helm.sh/helm/v3/cmd/helm@v3.12.1 | ||
@GOBIN=$(PROJECT_DIR)/bin GO111MODULE=on $(GO_CMD) install helm.sh/helm/v3/cmd/helm@$(HELM_VERSION) | ||
|
||
GENREF = $(PROJECT_DIR)/bin/genref | ||
.PHONY: genref |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couldn't we manage the genref as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
genref
is a main package it cannot be added in go.mod
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exactly it's module/command
and not a package
or something that can be imported :( https://pkg.go.dev/github.com/kubernetes-sigs/reference-docs/genref
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
LGTM label has been added. Git tree hash: b6ea08e92b1b1d9d203be65891593b21accc14a6
|
/approve We can split into a separate gomodule in a follow up. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alculquicondor, mszadkow The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What type of PR is this?
/kind cleanup
What this PR does / why we need it:
Move the declaration of version of the tools from make to go.mod
Which issue(s) this PR fixes:
Fixes #2284
Special notes for your reviewer:
Does this PR introduce a user-facing change?