From 08ae8a7a3d5de661450f7652e1e74427d93904a1 Mon Sep 17 00:00:00 2001 From: Dennis Huebner Date: Fri, 6 Dec 2024 14:32:02 +0100 Subject: [PATCH] Add Dependabot configuration --- .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 0000000..51d8f56 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + # Enable version updates for npm dependencies + - package-ecosystem: "npm" + directory: "/" # Location of package.json file + schedule: + interval: "weekly" + + # Enable version updates for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" # Location of GitHub Actions workflows + schedule: + interval: "weekly" \ No newline at end of file