Enable Dependabot for Docker and GitHub Actions

AFAIK (and this was new to me) Dependabot is not active by default.

This enables it for all dependencies here (Github Actions and Docker), so it scans and suggests updates.
This commit is contained in:
rugk 2021-09-01 01:25:09 +02:00 committed by GitHub
parent f052464b6e
commit c851b02083
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
# Maintain dependencies for GitHub Actions
# src: https://github.com/marketplace/actions/build-and-push-docker-images#keep-up-to-date-with-github-dependabot
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"