From 2d48c5a1efc9a2f21311351c997f40c23cc956a0 Mon Sep 17 00:00:00 2001 From: Marc Siegel Date: Tue, 11 May 2021 10:22:48 -0400 Subject: [PATCH] Add dependabot.yml Configure Dependabot with the most basic configuration for both Ruby gems (via Bundler) and Github Actions. Re: #71 --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2fd1771 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 + +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + # Maintain dependencies for Ruby's Bundler + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "daily"