From 2620ac6d946b6e07ea1ed6941550d43d016039c5 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Wed, 23 Oct 2024 13:34:38 -0400 Subject: [PATCH] chore(gh): add dependabot (#1423) --- .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 000000000..897931a42 --- /dev/null +++ b/.github/dependabot.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 week. + interval: "weekly" + + # Maintain dependencies for Go modules + - package-ecosystem: "gomod" + directory: "/" + schedule: + # Check for updates to Go modules every week. + interval: "weekly"