From 92dbbb0fe580e86371312cb7ac3e3348d3d08f7a Mon Sep 17 00:00:00 2001 From: Abhishek Gaikwad Date: Wed, 15 Jan 2025 11:40:46 -0800 Subject: [PATCH] add dependabot configuration for automated dependency updates Signed-off-by: Abhishek Gaikwad --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d073a4f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# and +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" \ No newline at end of file