Files
360b34de9f chore: add grouped updates to dependabot docker ecosystem (#15012)
The docker ecosystem entry was missing a groups block, so it was the
only ecosystem not using grouped update PRs. Match the github-actions
and uv entries.

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-15 20:32:56 -07:00

41 lines
890 B
YAML

---
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 7
groups:
github-actions:
patterns:
- "*"
# Maintain dependencies for Python using uv
# Using "uv" ecosystem ensures both pyproject.toml AND uv.lock are updated together
# This prevents Docker build failures from lockfile mismatches
- package-ecosystem: "uv"
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 7
groups:
python:
patterns:
- "*"
# Maintain Docker base image (python:3.12-alpine)
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 7
groups:
docker:
patterns:
- "*"