From bcb34bb052154c3763a5f2e9761ef404f035ea84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 18 Jun 2024 08:39:14 -0700 Subject: [PATCH] Add Dependabot configuration 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. --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..660586b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +# Copyright (C) 2024 The apca Developers +# 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 + open-pull-requests-limit: 25 + rebase-strategy: auto + directory: / + schedule: + interval: daily + - package-ecosystem: cargo + versioning-strategy: auto + directory: / + schedule: + interval: daily