Skip to content

Commit

Permalink
WIP: test new dependabot strategy
Browse files Browse the repository at this point in the history
Signed-off-by: Jussi Kukkonen <[email protected]>
  • Loading branch information
jku committed Dec 12, 2023
1 parent 8fbf0c7 commit 198252f
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,35 @@ updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
time: "10:00"
interval: "weekly"
open-pull-requests-limit: 10
groups:
build-and-release-dependencies:
# Python dependencies known to be critical to our build/release security
patterns:
- "build"
test-and-lint-dependencies:
# Python dependencies that are only pinned to ensure test reproducibility
patterns:
- "black"
- "isort"
- "pylint"
- "mypy"
- "bandit"
- "pydocstyle"
dependencies:
# Python (developer) runtime dependencies. Also any new dependencies not
# caught by earlier groups
patterns:
- "*"


- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "10:00"
interval: "weekly"
open-pull-requests-limit: 10
groups:
action-dependencies:
patterns:
- "*"

0 comments on commit 198252f

Please sign in to comment.