From 3c6588a4cd3e6c9ebba53a92f25eefb61dce0256 Mon Sep 17 00:00:00 2001 From: "Peter A. Jonsson" Date: Thu, 7 Mar 2024 11:28:40 +0100 Subject: [PATCH] Use dependabot to update go modules Dependabot will automatically submit pull requests for new versions of go modules used by the project. Documentation about using Dependabot for version updates: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..94597f0ef --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + - package-ecosystem: gomod + directory: "/" + schedule: + interval: "daily" + target-branch: "master"