Skip to content

Commit

Permalink
formalize ignored (test) dependency updates (#1769)
Browse files Browse the repository at this point in the history
Signed-off-by: Hamza El-Saawy <hamzaelsaawy@microsoft.com>
  • Loading branch information
helsaawy authored May 15, 2023
1 parent 889236e commit 497a346
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# there may be other dependencies manually ignored.
# search `"@dependabot ignore" in:comments` in the repo to see them.
#
# reference:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
Expand All @@ -13,8 +17,16 @@ updates:
schedule:
interval: "weekly"
day: "sunday"
# ignore patch version increment updates in test, since shouldn't be critical
labels:
- dependencies
- go
- tests
ignore:
# updating CRI would break tests
- dependency-name: "k8s.io/cri-api"
# keep containerd and related dependencies in sync with the shim/the root repo
- dependency-name: "github.com/containerd/*"
# ignore patch version increment updates in test, since shouldn't be critical
- dependency-name: "*"
update-types: ["version-update:semver-patch"]

Expand Down

0 comments on commit 497a346

Please sign in to comment.