Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ updates:
# Ignore controller-runtime major and minor as it's upgraded together with sigs.k8s.io/cluster-api.
- dependency-name: "sigs.k8s.io/controller-runtime"
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
# Ignore k8s modules major and minor as they are upgraded together with controller-runtime.
- dependency-name: "k8s.io/*"
# Ignore specific k8s modules major and minor as they are upgraded together with controller-runtime.
# This prevents Dependabot from creating a PR for every minor update of these modules which would be
# incompatible with the current version of controller-runtime and therefore just closed.
- dependency-name: "k8s.io/api*"
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
- dependency-name: "k8s.io/client-go"
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
# Ignore ntnx-api-golang-clients modules major, minor, and patch as they are upgraded together with prism-go-client.
- dependency-name: "github.com/nutanix/ntnx-api-golang-clients/*"
Expand Down
Loading