From 31bb0be40a1e62d34fd6d9bf39eba31abee2ee73 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Thu, 19 Mar 2026 19:43:25 -0700 Subject: [PATCH] Automatically update GitHub Actions with Dependabot GitHub Actions runners periodically update to a new version of Node, causing a cascade of major version bumps in various actions (because this is a breaking change on self-hosted runners) that are annoying to manually apply. Let Dependabot do it, in a batched PR once a month. --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..efd593f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + commit-message: + prefix: workflows + groups: + actions: + patterns: ["*"] + labels: ["dependencies"] + schedule: + interval: monthly