2021-10-08 09:57:56 +08:00
|
|
|
# Basic dependabot.yml file with minimum configuration for gomod.
|
|
|
|
|
|
|
|
version: 2
|
|
|
|
updates:
|
2021-10-28 10:08:36 +08:00
|
|
|
# Enable version updates for netmaker
|
2021-10-08 09:57:56 +08:00
|
|
|
- package-ecosystem: "gomod"
|
|
|
|
directory: "/"
|
|
|
|
# Check for updates every day (weekdays)
|
|
|
|
schedule:
|
2021-10-28 09:50:45 +08:00
|
|
|
interval: "weekly"
|
|
|
|
target-branch: "develop"
|
2021-10-28 10:08:36 +08:00
|
|
|
# Enable version updates for netclient
|
|
|
|
- package-ecosystem: "gomod"
|
|
|
|
directory: "/netclient"
|
|
|
|
# Check for updates every day (weekdays)
|
|
|
|
schedule:
|
|
|
|
interval: "weekly"
|
|
|
|
target-branch: "develop"
|
2022-11-11 04:04:14 +08:00
|
|
|
# Enable version updates for GitHubActions
|
|
|
|
- package-ecosystem: "github-actions"
|
|
|
|
directory: "/"
|
|
|
|
schedule:
|
|
|
|
interval: "weekly"
|
|
|
|
target-branch: "develop"
|
|
|
|
# Enable version updates for docker images
|
|
|
|
- package-ecosystem: "docker"
|
|
|
|
directory: "/"
|
|
|
|
schedule:
|
|
|
|
interval: "weekly"
|
|
|
|
target-branch: "develop"
|