mirror of
https://github.com/trailofbits/algo.git
synced 2026-08-17 21:25:50 +02:00
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>
41 lines
890 B
YAML
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:
|
|
- "*"
|