Skip to content

Commit

Permalink
update dependabot config (#3155)
Browse files Browse the repository at this point in the history
* Configure dependabot to only provide security updates for the active components.
  • Loading branch information
jkppr authored Aug 21, 2024
1 parent 665740a commit 9d2ccde
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
version: 2
updates:
# Ignore version updates and only open a PR for security updates!
- package-ecosystem: "github-actions"
directory: "/.github/workflows"
schedule:
interval: "weekly"
interval: "monthly"
open-pull-requests-limit: 0
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 3
allow:
- dependency-type: "direct"
interval: "monthly"
open-pull-requests-limit: 0
- package-ecosystem: "pip"
directory: "/test_requirements.txt"
schedule:
interval: "weekly"
open-pull-requests-limit: 3
allow:
- dependency-type: "direct"
interval: "monthly"
open-pull-requests-limit: 0
- package-ecosystem: "npm"
directory: "/timesketch/frontend-ng"
schedule:
interval: "weekly"
open-pull-requests-limit: 3
allow:
- dependency-type: "direct"
interval: "monthly"
open-pull-requests-limit: 0
# ignore dependencies of the legacy front-end since it is deprecated
- package-ecosystem: "npm"
directory: "/timesketch/frontend"
schedule:
interval: "monthly"
open-pull-requests-limit: 0
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"]

0 comments on commit 9d2ccde

Please sign in to comment.