Skip to content

Commit e70d6db

Browse files
committed
docs: add dependabot config for uv
1 parent ef1243c commit e70d6db

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

docs/guides/integration/dependency-bots.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,21 @@ need to be explicitly defined using
6666

6767
## Dependabot
6868

69-
Support for uv is not yet available. Progress can be tracked at
70-
[dependabot/dependabot-core#10478](https://github.com/dependabot/dependabot-core/issues/10478).
69+
uv is supported by
70+
[Dependabot](https://docs.github.com/en/code-security/dependabot/ecosystems-supported-by-dependabot/supported-ecosystems-and-repositories)
71+
72+
Dependabot uses the presence of a `uv.lock` or `pyproject.toml`.
73+
74+
```yaml title=".github/dependabot.yml"
75+
version: 2
76+
updates:
77+
- package-ecosystem: "uv"
78+
# Location of `uv.lock` and/or `pyproject.toml`
79+
directory: "/"
80+
schedule:
81+
interval: "weekly"
82+
```
83+
84+
Refer to
85+
[Dependabot's documentation](`https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference`)
86+
for more configuration options.

0 commit comments

Comments
 (0)