From 6c148647d8ba7cc403a95b3593b5c0138507c044 Mon Sep 17 00:00:00 2001 From: shayaa <101264710+Vxrtrauter@users.noreply.github.com> Date: Thu, 9 Apr 2026 00:00:46 +0200 Subject: [PATCH] Configure Dependabot for daily updates Updated Dependabot configuration to include daily updates for GitHub Actions and Python dependencies. --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..c80b447 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + # Keeps your GitHub Actions (CI/CD) up to date daily + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + # Keeps your Python dependencies (requirements.txt / pyproject.toml) up to date daily + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily"