Skip to content

Commit c9a9a22

Browse files
committed
VLN-1384: fix missing-dependency-cooldown
1 parent 6168ebc commit c9a9a22

3 files changed

Lines changed: 28 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "uv"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
cooldown:
8+
default-days: 14
9+
10+
- package-ecosystem: "uv"
11+
directory: "/lambda_worker"
12+
schedule:
13+
interval: "weekly"
14+
cooldown:
15+
default-days: 14
16+
17+
- package-ecosystem: "github-actions"
18+
directory: "/"
19+
schedule:
20+
interval: "weekly"
21+
cooldown:
22+
default-days: 14

lambda_worker/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ dev = [
1919
requires = ["hatchling"]
2020
build-backend = "hatchling.build"
2121

22+
[tool.uv]
23+
exclude-newer = "14 days"
24+
2225
[tool.hatch.metadata]
2326
allow-direct-references = true
2427

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ packages = [
119119
requires = ["hatchling"]
120120
build-backend = "hatchling.build"
121121

122+
[tool.uv]
123+
exclude-newer = "14 days"
124+
122125
[tool.poe.tasks]
123126
format = [
124127
{ cmd = "uv run ruff check --select I --fix" },

0 commit comments

Comments
 (0)