Skip to content

Commit

Permalink
Add Dependabot configuration
Browse files Browse the repository at this point in the history
Add configuration for Dependabot to automatically update dependencies,
if possible. Updates are currently managed for GitHub Actions as well as
Cargo.toml based Rust dependencies.
  • Loading branch information
d-e-s-o committed Jul 16, 2024
1 parent eadd81a commit 5c1f477
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright (C) 2024 Daniel Mueller <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: github-actions
rebase-strategy: auto
directory: /
schedule:
interval: daily
- package-ecosystem: cargo
versioning-strategy: auto
directory: /
schedule:
interval: daily

0 comments on commit 5c1f477

Please sign in to comment.