Check for updates to GitHub Actions and Go modules every weekday

Check for updates to Go modules every weekday
This commit is contained in:
John Losito
2020-06-27 23:08:17 -04:00
committed by Paul Tyng
parent 10014f2f05
commit 50f81f9662

15
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every weekday
interval: "daily"
# Maintain dependencies for Go modules
- package-ecosystem: "gomod"
directory: "/"
schedule:
# Check for updates to Go modules every weekday
interval: "daily"