From 106dc0cc1f11822d67897e8dd2ef43d7d2f20d45 Mon Sep 17 00:00:00 2001 From: Konstantin Chernyshev Date: Wed, 1 Nov 2023 20:16:29 +0100 Subject: [PATCH 1/2] ci: configure dependabot auto 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..681f2ac --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 + +updates: + - package-ecosystem: "github-actions" + directory: "/" # Workflow files stored in the default location of `.github/workflows` + schedule: + interval: "daily" + + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" From 7f5a036cb9cb2bc24adefce777a7173de8f234fb Mon Sep 17 00:00:00 2001 From: Konstantin Chernyshev Date: Wed, 1 Nov 2023 20:19:05 +0100 Subject: [PATCH 2/2] ci: set weekly dependabot updates --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 681f2ac..4b7bb50 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,9 +4,9 @@ updates: - package-ecosystem: "github-actions" directory: "/" # Workflow files stored in the default location of `.github/workflows` schedule: - interval: "daily" + interval: "weekly" - package-ecosystem: "pip" directory: "/" schedule: - interval: "daily" + interval: "weekly"