From 4fc03569eb821eb6f69eed47010d00e872d16444 Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 27 May 2026 14:43:23 +0100 Subject: [PATCH] Add Dependabot config for Python dependencies Introduces .github/dependabot.yml to enable weekly tracking of pip package updates and automate security vulnerability patching. Signed-off-by: Lucas Alvares Gomes --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4f1114b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + - package-ecosystem: "uv" + directory: "/" + schedule: + interval: "weekly" +