From 9cc0b2f8195ada478dfc634584ca56da22b401fe Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers <359867+desrosj@users.noreply.github.com> Date: Sat, 31 Jan 2026 18:43:17 +0100 Subject: [PATCH] Introduce a Dependabot configuration file. This adds a `dependabot.yml` file to configure updates for third-party GitHub Actions. Because there are currently only 3 third-party actions, there are no groups being configured at this time. --- .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 0000000..81e8785 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 + +updates: + # Configure Dependabot updates for GitHub Actions + - package-ecosystem: 'github-actions' + schedule: + interval: 'weekly' + open-pull-requests-limit: 10