From c4f5e8b3f9f02835dabe9d28b569d3985ad761bd Mon Sep 17 00:00:00 2001 From: wwuck Date: Wed, 3 Nov 2021 17:38:35 +1100 Subject: [PATCH] feat: Add dependabot configuration Add dependabot configuration to get automated version and security updates on go.mod and GitHub Actions --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..c5787bf --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + # Check for updates once a day + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + # Check for updates once a week + schedule: + interval: "weekly"