Skip to content

Commit

Permalink
feat(ci): introduce an automatic dependency managament based on depen…
Browse files Browse the repository at this point in the history
…dabot

Right now we are getting PR from dependabot for security vulnerabilities only.
This configuration will enable dependabot to open PRs for direct and indirect upgrade of golang packages.
It's also enabling github-actions version managment.
  • Loading branch information
tgragnato committed Jan 5, 2024
1 parent dd2a0a0 commit ae4d919
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
allow:
- dependency-type: "direct"
- dependency-type: "indirect"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

0 comments on commit ae4d919

Please sign in to comment.