Skip to content

Commit

Permalink
Merge pull request #735 from lukpueh/dependabot-groups
Browse files Browse the repository at this point in the history
Dependabot: Use groups, update weekly
  • Loading branch information
jku authored Feb 14, 2024
2 parents aa7463e + 59208c5 commit f19915e
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 @@ -3,13 +3,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"
- "hatchling"
test-and-lint-dependencies:
# Python dependencies that are only pinned to ensure test reproducibility
patterns:
- "bandit"
- "black"
- "coverage"
- "isort"
- "mypy"
- "pylint"
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 f19915e

Please sign in to comment.