From 3712689836ca77bca4dffa62ee49c40f0ebc92e5 Mon Sep 17 00:00:00 2001 From: ccoVeille <3875889+ccoVeille@users.noreply.github.com> Date: Sun, 12 May 2024 01:10:32 +0200 Subject: [PATCH] ci: add dependabot to GitHub Actions It will help to keep go dependencies (go.mod) up to date, but also will make sure GitHub actions are also updated. See #24 --- .github/dependabot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1649de1 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,21 @@ +version: 2 +updates: + # Maintain golang dependencies defined in go.mod + # These would open PR, these PR would be tested with the CI + # They will have to be merged manually by a maintainer + - package-ecosystem: "gomod" + directory: "/" + open-pull-requests-limit: 10 # avoid spam, if no one reacts + schedule: + interval: "daily" + time: "11:00" + + # Maintain dependencies for GitHub Actions + # These would open PR, these PR would be tested with the CI + # They will have to be merged manually by a maintainer + - package-ecosystem: "github-actions" + directory: "/" + open-pull-requests-limit: 10 # avoid spam, if no one reacts + schedule: + interval: "daily" + time: "11:00"