From 1f0736c1a1267e5476f5c4e1a89ac5e1b0f0f9ba Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 9 Sep 2024 19:47:05 +0200 Subject: [PATCH] Add dependabot config for GH Actions runners I noticed the `actions/checkout` action runner is out of date (still on v3 which uses Node 16 for which support will be stopped on GHA soonish). So I figured adding a dependabot config to make those type of updates would save me from making them manually ;-) --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..d727b17c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# Dependabot configuration. +# +# 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" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + commit-message: + prefix: "GH Actions:"