From df614fff266398d60ba289b733d1e89fa5e70d72 Mon Sep 17 00:00:00 2001 From: Pratik Raj Date: Thu, 10 Nov 2022 16:02:03 +0530 Subject: [PATCH] feat: dependabot workflow automation for updating dependency Signed-off-by: Pratik Raj --- .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 000000000..d608a8244 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + # Dependencies listed in go.mod + - package-ecosystem: "gomod" + directory: "/" # Location of package manifests + schedule: + interval: "weekly" + + # Dependencies listed in .github/workflows/*.yml + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"