From f86df82618ec9a197d8b6fa35d326313b8b68cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 18 Aug 2026 11:10:02 -0700 Subject: [PATCH] Add Dependabot configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add configuration for Dependabot to automatically update dependencies, if possible. That should help us silence the noisy warnings produced by CI about old Node versions used by dependent actions. Signed-off-by: Daniel Müller --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..95ad4b5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# 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 + rebase-strategy: auto + directory: / + schedule: + interval: weekly