Skip to content

Commit

Permalink
Create dependabot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEricNitschke authored Jun 19, 2024
1 parent 80f9f93 commit 10818ea
Showing 1 changed file with 89 additions and 0 deletions.
89 changes: 89 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "pip"
directory: "/tictactoe_python"
schedule:
interval: "weekly"
groups:
python-minor:
update-types:
- minor
- patch
- package-ecosystem: "pip"
directory: "/tictactoe_python/test"
schedule:
interval: "weekly"
groups:
python-minor-dev:
update-types:
- minor
- patch
- package-ecosystem: "cargo"
directory: "/tictactoe_rust"
schedule:
interval: "weekly"
groups:
cargo-minor:
update-types:
- minor
- patch
- package-ecosystem: "gomod"
directory: "/tictactoe_go"
schedule:
interval: "weekly"
groups:
cargo-minor:
update-types:
- minor
- patch
- package-ecosystem: "maven"
directory: "/tictactoe_java"
schedule:
interval: "weekly"
groups:
java-minor:
update-types:
- minor
- patch
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
groups:
js-minor:
update-types:
- minor
- patch
- package-ecosystem: "gradle"
directory: "/tictactoe_kotlin"
schedule:
interval: "weekly"
groups:
kotlin-minor:
update-types:
- minor
- patch
- package-ecosystem: "swift"
directory: "/tictactoe_swift"
schedule:
interval: "weekly"
groups:
swift-minor:
update-types:
- minor
- patch

- package-ecosystem: "github-actions"
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
directory: "/"
schedule:
interval: "weekly"
groups:
actions-all:
patterns:
- "*"

0 comments on commit 10818ea

Please sign in to comment.