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 to GitHub Actions as well as
Cargo.toml based Rust dependencies.
  • Loading branch information
d-e-s-o committed Apr 26, 2024
1 parent b5fe4da commit 6278913
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 <deso@posteo.net>
# 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 6278913

Please sign in to comment.