From 0a251c7a24cad965de1d564d236c860c3f94d80f Mon Sep 17 00:00:00 2001 From: Eric Deandrea Date: Thu, 28 Mar 2024 13:26:34 -0400 Subject: [PATCH] Add Dependabot configuration file This commit introduces a new Dependabot configuration file to the project. The configuration is set to daily check and update the Maven, npm, and GitHub Actions packages located in the root and frontend directories to ensure that the project dependencies are always up-to-date. Signed-off-by: Eric Deandrea --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..69c204e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + - package-ecosystem: maven + directory: / + schedule: + interval: daily + + - package-ecosystem: npm + directory: frontend + schedule: + interval: daily + + - package-ecosystem: github-actions + directory: / + schedule: + interval: daily