From 8677027ae2337ab1816836f0220a313bbc686bfc Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Fri, 26 Jan 2024 12:31:18 +0100 Subject: [PATCH] Add dependabot for github actions With this merge, dependabot will perform dependency checks on the dependencies of our GitHub Actions on a weekly basis. Following the example of E3SM-Project/E3SM#6163 (Thanks @mahf708!). --- .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 0000000000..289d2174ac --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 + +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + assignees: + - "xylar" + reviewers: + - "xylar"