From 0243f551765382856f58ca451e5de5df0084fbea Mon Sep 17 00:00:00 2001 From: elliot <3186037+elliot-100@users.noreply.github.com> Date: Thu, 24 Aug 2023 16:11:20 +0100 Subject: [PATCH 1/2] Add GitHub dependabot to handle package updates --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b39cb9b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + + - package-ecosystem: "pip" # also supports Poetry + directory: "/" # Location of package manifests + schedule: + interval: "monthly" + + - package-ecosystem: "github-actions" # only supports updates using the GitHub repository syntax, such as actions/checkout@v3 + directory: "/" # Location of package manifests + schedule: + interval: "monthly" From 4f263fdb95478fddf8ceed01c4138b6970bcd732 Mon Sep 17 00:00:00 2001 From: elliot <3186037+elliot-100@users.noreply.github.com> Date: Fri, 25 Aug 2023 11:34:35 +0100 Subject: [PATCH 2/2] Change Dependabot schedule to weekly --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b39cb9b..8394863 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,9 +4,9 @@ updates: - package-ecosystem: "pip" # also supports Poetry directory: "/" # Location of package manifests schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "github-actions" # only supports updates using the GitHub repository syntax, such as actions/checkout@v3 directory: "/" # Location of package manifests schedule: - interval: "monthly" + interval: "weekly"