From 11974fedc458048b50277e10bf1bf9addb7a3ce4 Mon Sep 17 00:00:00 2001 From: Carlos Gomes Date: Thu, 4 Jul 2024 09:47:35 +0200 Subject: [PATCH] add dependabot yaml Signed-off-by: Carlos Gomes --- .github/dependabot.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 00000000..96812e26 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,24 @@ +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +# mostly from https://github.com/microsoft/torchgeo/blob/main/.github/dependabot.yml +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + groups: + # torchvision pins torch, must update in unison + torch: + patterns: + - "torch" + - "torchvision" + ignore: + # setuptools releases new versions almost daily + - dependency-name: "setuptools" + update-types: ["version-update:semver-patch"] + # segmentation-models-pytorch pins timm, must update in unison + - dependency-name: "timm" \ No newline at end of file