Skip to content

Commit

Permalink
Configure Dependabot (Closes #36) (#39)
Browse files Browse the repository at this point in the history
This commit configures dependabot to run on all the project dependencies including the GitHub actions pipelines dependencies.

When a new dependency is available, Dependabot will open a new PR against the `main` branch.
  • Loading branch information
yonatankarp authored Jun 21, 2024
1 parent 9868812 commit 24548b2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
labels:
- "type: dependencies"
- "relates-to: build"

# Maintain dependencies for Gradle
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "weekly"
labels:
- "type: dependencies"
- "relates-to: build"

# See https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/keeping-your-dependencies-updated-automatically
# for more information about configuring Dependabot.

0 comments on commit 24548b2

Please sign in to comment.