From fb10a6aaeb55c62973ede671ba0e8c623b3757e8 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Wed, 23 Oct 2024 22:55:56 +0530 Subject: [PATCH] feat: add dependabot config for automatic dependency updates --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..58f0ab5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + + # Enable version updates for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + + # Enable version updates for GitHub actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"