From c332b22d64c18188b2eca8482fc971ab2aa65ed9 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Mon, 17 Jun 2024 12:01:00 -0500 Subject: [PATCH] chore: Add Dependabot for GitHub Actions (#53) * c.f. https://learn.scientific-python.org/development/guides/gha-basic/#updating --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..065e548 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + actions: + patterns: + - "*" + labels: + - "github-actions" + - "dependencies" + reviewers: + - "matthewfeickert"