From 8828115c47be22cab9b9bf6f408df997c5b4030c Mon Sep 17 00:00:00 2001 From: Helena Zhang Date: Fri, 26 Jan 2024 10:25:55 -0500 Subject: [PATCH] Add dependabot to upgrade GitHub Actions (#1373) I noticed some of our GitHub Actions, like checkout@v3, are outdated. Dependabot should be able to check these automatically and create pull requests. I didn't add `requirements.txt` to Dependabot since we don't have that many dependencies and we usually only bump the minimum version if needed. --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..c92b9a9f83 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +# Check for updates to GitHub Actions +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily"