From 5113c34e0b607381f9df0e287fe216ac6073c22a Mon Sep 17 00:00:00 2001 From: Andy Grunwald Date: Sun, 27 Oct 2024 10:29:05 +0100 Subject: [PATCH] Add Dependabot to automatically update GitHub Actions and Go mod dependencies --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d433f2d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "monthly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly"