From 34f8dbbc2feeef72538fa8fd6d697fed37cd5671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20R=C3=BCger?= Date: Wed, 27 Nov 2024 21:50:48 +0100 Subject: [PATCH] chore: add dependabot to the repository (#83) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description A lot of dependencies are outdated, this adds dependabot to ensure that dependencies stay updated. ## Changes ## Fixes ## Checklist - [x] I have read the **CONTRIBUTING.md** document. - [x] My code follows the code style of this project. - [x] I have added tests to cover my changes. - [x] All new and existing tests passed. - [x] I have updated the documentation accordingly. - [x] This change requires a change to the documentation on the website. ## Additional Information --------- Signed-off-by: Manuel RĂ¼ger Co-authored-by: ccoVeille <3875889+ccoVeille@users.noreply.github.com> --- .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..8028f97 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + open-pull-requests-limit: 10 # avoid spam, if no one reacts + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + open-pull-requests-limit: 10 # avoid spam, if no one reacts + schedule: + interval: "weekly"