From d0105ea4a725c2cf181608f25afca83ff1c3574f Mon Sep 17 00:00:00 2001 From: meanmail Date: Thu, 25 Jan 2024 16:24:45 +0100 Subject: [PATCH] Add Dependabot configuration file The .github/dependabot.yml configuration file was added to automatically check for updates on github-actions and docker packages weekly. This is expected to ensure that the project is always running on the latest, most secure versions of these packages. --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cda9222 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + time: "00:00" + groups: + all-actions: + patterns: [ "*" ] + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + day: "monday"