netmaker/.github/dependabot.yml
Matthew R. Kasun 9701521680 updated traefix and moquitto images in compose files
added docker and github actions to dependabot
2022-11-10 15:04:14 -05:00

31 lines
840 B
YAML

# Basic dependabot.yml file with minimum configuration for gomod.
version: 2
updates:
# Enable version updates for netmaker
- package-ecosystem: "gomod"
directory: "/"
# Check for updates every day (weekdays)
schedule:
interval: "weekly"
target-branch: "develop"
# Enable version updates for netclient
- package-ecosystem: "gomod"
directory: "/netclient"
# Check for updates every day (weekdays)
schedule:
interval: "weekly"
target-branch: "develop"
# 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"