From cd17d0e6f9337e3b3cbb820c6754d28e5eba8157 Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 7 Jun 2021 20:11:19 +0200 Subject: [PATCH] Setup dependabot config --- .github/dependabot.yml | 48 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..12419810f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,48 @@ +# See https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + # TODO: Enable when the future Dockerfiles lands in the repository + # Maintain dependencies for Docker files + # - package-ecosystem: "docker" + # directory: "/docker" + # schedule: + # interval: "weekly" + + # Maintain dependencies for Python apps + - package-ecosystem: "pip" + directory: "/api" + schedule: + interval: "daily" + + - package-ecosystem: "pip" + directory: "/python_apps/airtime_analyzer" + schedule: + interval: "daily" + + - package-ecosystem: "pip" + directory: "/python_apps/airtime-celery" + schedule: + interval: "daily" + + - package-ecosystem: "pip" + directory: "/python_apps/api_clients" + schedule: + interval: "daily" + + - package-ecosystem: "pip" + directory: "/python_apps/pypo" + schedule: + interval: "daily" + + # TODO: Enable when the future UI lands in the repository + # Maintain dependencies for NPM packages + # - package-ecosystem: "npm" + # directory: "/ui" + # schedule: + # interval: "daily"