Skip to content

Commit

Permalink
automation: fix dependabot configuration
Browse files Browse the repository at this point in the history
dependabot configuration had an error which prevented its usage. Now we
track Docker, Go and GitHub Actions updates.

Signed-off-by: Flavio Castelli <[email protected]>
  • Loading branch information
flavio committed Nov 28, 2023
1 parent bebcd58 commit f5e02a8
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
version: 2
updates:
- package-ecosystem: "" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
versioning-strategy: "lockfile-only"
allowed_updates:
- match:
dependency_type: "all"
update_type: "semver:patch"

0 comments on commit f5e02a8

Please sign in to comment.