From 4f41be6f648573564b7a85ee99e50830a756529e Mon Sep 17 00:00:00 2001 From: Hamza El-Saawy <84944216+helsaawy@users.noreply.github.com> Date: Thu, 11 May 2023 13:36:45 -0400 Subject: [PATCH] enable dependency updates (#287) Signed-off-by: Hamza El-Saawy --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..711ed7c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# reference: +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily"