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.
12 lines
367 B
YAML
12 lines
367 B
YAML
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"
|