From 6e27e6673866d9f391b2cb36eb5bcb4ecf04c1a7 Mon Sep 17 00:00:00 2001 From: Einherjar Date: Tue, 12 Sep 2023 12:28:37 -0300 Subject: [PATCH] feat: add dependabot Fixes #1118. Adds `dependabot.yml` to `.github/` to check for `"github-action"` updates on a `"weekly"` basis. This does not touch Rust code or Cargo workflows. It will create PRs and we would need to approve them (they would be subject to the same merge policy) to instantiate the proposed dependabots into `master`. --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..453228e1c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +# Set update schedule for GitHub Actions +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly"