mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
chore(dependabot): Allows only security patches (#4075)
* feat(dependabot): Add dependabot to check for vulnerabilies and update dependencies --------- Signed-off-by: BLANKatGITHUB <131886247+BLANKatGITHUB@users.noreply.github.com> Signed-off-by: Blanky <131886247+BLANKatGITHUB@users.noreply.github.com>
This commit is contained in:
parent
41d8df6e11
commit
43060ba79e
1 changed files with 38 additions and 0 deletions
38
.github/dependabot.yml
vendored
38
.github/dependabot.yml
vendored
|
@ -5,6 +5,13 @@ updates:
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
|
|
||||||
|
open-pull-requests-limit: 1
|
||||||
|
groups:
|
||||||
|
actions:
|
||||||
|
patterns:
|
||||||
|
- "*"
|
||||||
|
|
||||||
|
|
||||||
- package-ecosystem: "gomod"
|
- package-ecosystem: "gomod"
|
||||||
directories:
|
directories:
|
||||||
- "/contrib/charts/dragonfly"
|
- "/contrib/charts/dragonfly"
|
||||||
|
@ -12,9 +19,40 @@ updates:
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
|
|
||||||
|
open-pull-requests-limit: 1
|
||||||
|
#uncomment it to group dependency updates
|
||||||
|
#groups:
|
||||||
|
#go-mod:
|
||||||
|
#patterns:
|
||||||
|
#- "*"
|
||||||
|
ignore:
|
||||||
|
# Disable all updates except security updates
|
||||||
|
#remove an item from ignore list to get dependency updates of that kind
|
||||||
|
- dependency-name: "*"
|
||||||
|
update-types:
|
||||||
|
- "version-update:semver-major"
|
||||||
|
- "version-update:semver-minor"
|
||||||
|
- "version-update:semver-patch"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- package-ecosystem: "pip"
|
- package-ecosystem: "pip"
|
||||||
directories:
|
directories:
|
||||||
- "/tests/dragonfly"
|
- "/tests/dragonfly"
|
||||||
- "/tools"
|
- "/tools"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
|
|
||||||
|
#uncomment it to group dependency updates
|
||||||
|
#groups:
|
||||||
|
#py-dep:
|
||||||
|
#patterns:
|
||||||
|
#- "*"
|
||||||
|
ignore:
|
||||||
|
# Disable all updates except security updates
|
||||||
|
#remove an item from ignore list to get dependency updates of that kind
|
||||||
|
- dependency-name: "*"
|
||||||
|
update-types:
|
||||||
|
- "version-update:semver-major"
|
||||||
|
- "version-update:semver-minor"
|
||||||
|
- "version-update:semver-patch"
|
||||||
|
|
Loading…
Reference in a new issue