From c9a9a22bffeadffb69ec784970928893f58dd6a2 Mon Sep 17 00:00:00 2001 From: picatz <14850816+picatz@users.noreply.github.com> Date: Mon, 18 May 2026 12:22:35 -0400 Subject: [PATCH] VLN-1384: fix missing-dependency-cooldown --- .github/dependabot.yml | 22 ++++++++++++++++++++++ lambda_worker/pyproject.toml | 3 +++ pyproject.toml | 3 +++ 3 files changed, 28 insertions(+) create mode 100644 .github/dependabot.yml 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" },