From eebc556c1666b5a714feaeffaa452e58a0af68e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Wed, 20 Nov 2024 14:56:17 +0100 Subject: [PATCH] Add Dependabot for GitHub Actions The release.yml workflow currently emits a warning: > The following actions use a deprecated Node.js version and will be forced to > run on node20: softprops/action-gh-release@v1. A newer version for that action is available. Dependabot should make it much easier to keep the actions up to date. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1cfe80a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: / + schedule: + interval: "monthly"