From df1c0eb01639fb0b59b4113a3ae6b39840f1e208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20K=C3=A4stle?= Date: Tue, 7 Jan 2025 17:11:48 +0100 Subject: [PATCH] Add dependabot config This commit adds a small dependabot config file. With this in place Github will automatically open Pull Requests for updated golang dependencies (and Github actions). This should help in maintaining the project, since one gets notified about new releases (with bugfixes) and possibly breaking changes. --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..49b697b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: +- package-ecosystem: gomod + directory: "/" + schedule: + interval: weekly + time: '10:00' + open-pull-requests-limit: 10 + +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: monthly