Skip to content
Closed
Show file tree
Hide file tree
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
62 changes: 62 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
version: 2

updates:
# Root project: uv-managed Python dependencies (pyproject.toml + uv.lock)
- package-ecosystem: "uv"
directory: "/"
schedule:
interval: "weekly"
groups:
python:
patterns:
- "*"

# Runtime services: pip-installed from pyproject.toml in Docker images
- package-ecosystem: "pip"
directory: "/runtimes/eoapi/stac"
schedule:
interval: "weekly"
groups:
stac:
patterns:
- "*"

- package-ecosystem: "pip"
directory: "/runtimes/eoapi/raster"
schedule:
interval: "weekly"
groups:
raster:
patterns:
- "*"

- package-ecosystem: "pip"
directory: "/runtimes/eoapi/vector"
schedule:
interval: "weekly"
groups:
vector:
patterns:
- "*"

# CDK CLI (used alongside aws-cdk-lib in the deploy group)
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"

# Docker base images, Dockerfiles, and docker-compose image pins
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"

# GitHub Actions workflow dependencies
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
groups:
github-actions:
patterns:
- "*"
2 changes: 1 addition & 1 deletion runtimes/eoapi/stac/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"orjson",
"stac-fastapi.pgstac>=6.0,<6.1",
"stac-fastapi.pgstac>=6.0,<6.2",
"jinja2>=2.11.2,<4.0.0",
"starlette-cramjam>=0.4,<0.6",
"psycopg_pool",
Expand Down
Loading