From c6d51c1e92664ba57caf5cb443491e15f65cd1f5 Mon Sep 17 00:00:00 2001 From: Achno <129212519+Achno@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:25:02 +0300 Subject: [PATCH] added dependabot to update dependencies every month --- .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..c34c452 --- /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: 5 # avoid spam, if no one reacts + schedule: + interval: "monthly" + 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: 5 # avoid spam, if no one reacts + schedule: + interval: "monthly" + time: "11:00" \ No newline at end of file