Skip to content

Commit

Permalink
ci: add dependabot to GitHub Actions
Browse files Browse the repository at this point in the history
It will help to keep go dependencies (go.mod) up to date, but also will
make sure GitHub actions are also updated.

See #24
  • Loading branch information
ccoVeille committed May 11, 2024
1 parent 2d76c03 commit 3712689
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: 2
updates:
# Maintain golang dependencies defined in go.mod
# These would open PR, these PR would be tested with the CI
# They will have to be merged manually by a maintainer
- package-ecosystem: "gomod"
directory: "/"
open-pull-requests-limit: 10 # avoid spam, if no one reacts
schedule:
interval: "daily"
time: "11:00"

# Maintain dependencies for GitHub Actions
# These would open PR, these PR would be tested with the CI
# They will have to be merged manually by a maintainer
- package-ecosystem: "github-actions"
directory: "/"
open-pull-requests-limit: 10 # avoid spam, if no one reacts
schedule:
interval: "daily"
time: "11:00"

0 comments on commit 3712689

Please sign in to comment.