diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..1008ea74 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +version: 2 +updates: + - package-ecosystem: "uv" + directory: "/" + schedule: + interval: "weekly" + cooldown: + default-days: 14 + + - package-ecosystem: "uv" + directory: "/lambda_worker" + schedule: + interval: "weekly" + cooldown: + default-days: 14 + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + cooldown: + default-days: 14 diff --git a/lambda_worker/pyproject.toml b/lambda_worker/pyproject.toml index 77a65440..11b227bc 100644 --- a/lambda_worker/pyproject.toml +++ b/lambda_worker/pyproject.toml @@ -19,6 +19,9 @@ dev = [ requires = ["hatchling"] build-backend = "hatchling.build" +[tool.uv] +exclude-newer = "14 days" + [tool.hatch.metadata] allow-direct-references = true diff --git a/pyproject.toml b/pyproject.toml index c88cdf8b..a99c32e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -119,6 +119,9 @@ packages = [ requires = ["hatchling"] build-backend = "hatchling.build" +[tool.uv] +exclude-newer = "14 days" + [tool.poe.tasks] format = [ { cmd = "uv run ruff check --select I --fix" },