From 2e339d7457a20de05381d4f6a558b1f14e3808e5 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 17 Mar 2023 13:23:52 +0100 Subject: [PATCH] Add Dependabot configuration file ...in order to update the GitHub Actions package versions. I noted that the versions of `actions/checkout` in use were out of date. Didn't want to leave it unautomated. --- .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 00000000..2b9f8833 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"