From 3eea63ebbfec719ca1028482be7b11614095669c Mon Sep 17 00:00:00 2001 From: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com> Date: Sat, 4 Nov 2023 18:39:49 +0100 Subject: [PATCH] feat: let Dependabot update docker, pip, GitHub Actions --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..beb11366 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" # Update Docker tags daily + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" # Update GitHub Actions weekly + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" # Update pip dependencies daily