From 05e19a0e3067be6a17505016cf88050cc7bb4e5e Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Mon, 5 Feb 2024 19:27:56 +0100 Subject: [PATCH] dependabot: check for github actions and bundler dependabot will then watch for outdated gems or github actions and create PRs to update them. --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..0aab5f12 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + # raise PRs for gem updates + - package-ecosystem: bundler + directory: "/" + schedule: + interval: daily + time: "13:00" + open-pull-requests-limit: 10 + + # Maintain dependencies for GitHub Actions + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: daily + time: "13:00" + open-pull-requests-limit: 10