From d8f9c7f43beb1843f8e6c412fa86ee5b18ed7bc9 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Fri, 11 Oct 2024 23:30:38 -0400 Subject: [PATCH] chore(gh): add dependabot Adds dependabot configuration. Signed-off-by: Ryan Johnson --- .github/dependbot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependbot.yml diff --git a/.github/dependbot.yml b/.github/dependbot.yml new file mode 100644 index 000000000..d9b0e4a11 --- /dev/null +++ b/.github/dependbot.yml @@ -0,0 +1,16 @@ +--- +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every weekday + interval: "daily" + + # Maintain dependencies for Go modules + - package-ecosystem: "gomod" + directory: "/" + schedule: + # Check for updates to Go modules every weekday + interval: "daily"