From e284aa40d7ef7ae0e88269352733b1f08183066b Mon Sep 17 00:00:00 2001 From: "Jack S. Hale" Date: Fri, 11 Oct 2024 08:30:42 +0200 Subject: [PATCH 1/3] Add dependabot to Basix. --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..0d08e261a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From 2d4e3a6ac4c6b2252d23ac675da0c7aeb3ce9885 Mon Sep 17 00:00:00 2001 From: "Jack S. Hale" Date: Fri, 11 Oct 2024 08:36:03 +0200 Subject: [PATCH 2/3] Add pip/python also. --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0d08e261a..4e7559dcb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,7 @@ updates: directory: "/" # Location of package manifests schedule: interval: "weekly" + - package-ecosystem: "pip" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From 41c621e1abbec8f2a27f8f1bee6aafb97dc41a69 Mon Sep 17 00:00:00 2001 From: "Jack S. Hale" Date: Fri, 11 Oct 2024 08:45:29 +0200 Subject: [PATCH 3/3] Add python/ subdirectory --- .github/dependabot.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4e7559dcb..ce409b019 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,8 @@ updates: schedule: interval: "weekly" - package-ecosystem: "pip" # See documentation for possible values - directory: "/" # Location of package manifests + directories: + - "/" + - "python/" schedule: interval: "weekly"