Skip to content
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

Use peribolos to manage team repo permissions #2614

Merged
merged 10 commits into from
Jul 26, 2023
Prev Previous commit
Next Next commit
Add dependency required for cmd/restriction
Signed-off-by: Madhav Jivrajani <madhav.jiv@gmail.com>
  • Loading branch information
MadhavJivrajani authored and Priyankasaggu11929 committed Jul 26, 2023
commit f0d4330dbadf9a79b40d253fd018817b3d47e22a
29 changes: 15 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
module k8s.io/org

go 1.13
go 1.16

require (
github.com/bmatcuk/doublestar v1.3.4
github.com/ghodss/yaml v1.0.0
github.com/go-git/go-git/v5 v5.4.2
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.5
k8s.io/apimachinery v0.0.0-20190817020851-f2f3a405f61d
github.com/go-git/go-git/v5 v5.5.2
github.com/sirupsen/logrus v1.7.0
github.com/spf13/cobra v1.1.1
k8s.io/apimachinery v0.20.2
k8s.io/test-infra v0.0.0-20230726003218-c95b43963de2
sigs.k8s.io/yaml v1.1.0
sigs.k8s.io/yaml v1.2.0
)

// Pin all k8s.io staging repositories to kubernetes-1.15.3.
// Pin all k8s.io staging repositories to kubernetes v0.18.6
// When bumping Kubernetes dependencies, you should update each of these lines
// to point to the same kubernetes-1.x.y release branch before running update-deps.sh.
// to point to the same kubernetes v0.KubernetesMinor.KubernetesPatch version
// before running update-deps.sh.
Comment on lines 17 to +19
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MadhavJivrajani, @palnabarun I was thinking of removing above lines of comment from the go.mod file, since update-deps.sh hack file is no longer present in the repo (was removed as part of #1278).

WDYT? Is there something else that is doing the job of update-deps.sh script currently and can be replaced with, in the comments?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SGTM!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, pushed changes in the latest commits refresh. 👍

replace (
cloud.google.com/go => cloud.google.com/go v0.44.3
k8s.io/api => k8s.io/api v0.0.0-20190918195907-bd6ac527cfd2
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190918201827-3de75813f604
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190817020851-f2f3a405f61d
k8s.io/client-go => k8s.io/client-go v0.0.0-20190918200256-06eb1244587a
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20190612205613-18da4a14b22b
cloud.google.com/go/pubsub => cloud.google.com/go/pubsub v1.3.1
github.com/Azure/go-autorest => github.com/Azure/go-autorest v14.2.0+incompatible
github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.4.1
golang.org/x/lint => golang.org/x/lint v0.0.0-20190409202823-959b441ac422
gopkg.in/yaml.v3 => gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22
k8s.io/client-go => k8s.io/client-go v0.20.2
)
Loading