Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 27 additions & 23 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
version: 2
updates:
# UV package manager support
- package-ecosystem: "uv"
directory: "/"
- package-ecosystem: pip
directory: /docs
schedule:
interval: "weekly"
day: "sunday"
timezone: "Europe/Berlin"
interval: weekly
day: sunday
timezone: Europe/Berlin
open-pull-requests-limit: 10
# Group updates to reduce PR noise
insecure-external-code-execution: allow
- package-ecosystem: uv
directory: /
schedule:
interval: weekly
day: sunday
timezone: Europe/Berlin
open-pull-requests-limit: 10
ignore:
- dependency-name: pyspark
- dependency-name: pandas
update-types:
- version-update:semver-major
groups:
major-updates:
01_major-updates:
patterns:
- "*"
- '*'
update-types:
- "major"
minor-updates:
- major
02_minor-updates:
patterns:
- "*"
- '*'
update-types:
- "minor"
patch-updates:
- minor
03_patch-updates:
patterns:
- "*"
- '*'
update-types:
- "patch"
# Ignore dependencies that need manual review
ignore:
- dependency-name: "pyspark"
# PySpark updates can break compatibility, needs manual testing
- dependency-name: "pandas"
update-types: ["version-update:semver-major"]
# Only allow minor/patch updates for pandas to avoid breaking changes
- patch