From f5aa7fa51079a01cbfcb54a468ae22a2cc05bbe9 Mon Sep 17 00:00:00 2001 From: Guy Korland Date: Mon, 12 Jan 2026 14:53:09 +0200 Subject: [PATCH] Add uv and GitHub Actions to Dependabot config --- .github/dependabot.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6fd3cff..11db9d4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,18 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + version: 2 updates: - - package-ecosystem: "pip" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "uv" + directory: "/" schedule: interval: "daily" target-branch: "staging" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + target-branch: "staging"