Skip to content

Commit

Permalink
Add Dependabot configuration file
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
meanmail committed Jan 25, 2024
1 parent f6ac6fa commit d0105ea
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit d0105ea

Please sign in to comment.