diff --git a/docs/guides/integration/dependency-bots.md b/docs/guides/integration/dependency-bots.md
index 3bd6eb4f97d7..a9481d6e576a 100644
--- a/docs/guides/integration/dependency-bots.md
+++ b/docs/guides/integration/dependency-bots.md
@@ -66,5 +66,21 @@ need to be explicitly defined using
 
 ## Dependabot
 
-Support for uv is not yet available. Progress can be tracked at
-[dependabot/dependabot-core#10478](https://github.com/dependabot/dependabot-core/issues/10478).
+uv is supported by
+[Dependabot](https://docs.github.com/en/code-security/dependabot/ecosystems-supported-by-dependabot/supported-ecosystems-and-repositories)
+
+Dependabot uses the presence of a `uv.lock` or `pyproject.toml`.
+
+```yaml title=".github/dependabot.yml"
+version: 2
+updates:
+  - package-ecosystem: "uv"
+    # Location of `uv.lock` and/or `pyproject.toml`
+    directory: "/"
+    schedule:
+      interval: "weekly"
+```
+
+Refer to
+[Dependabot's documentation](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference)
+for more configuration options.