From abb0a8124668bcfeb712ddfa1eeda0e3c9fa324d Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Fri, 20 Jan 2023 18:38:09 -0800 Subject: Ask Dependabot to bump actions I noticed some of our GitHub action workflows are throwing deprecation warnings... Let's have Dependbot open PR's to bump them whenever they're outdated. We could also enable it for watching our Python deps, but that may be more controversial, so that can be done as a follow-on PR if there's interest. --- .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..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" -- cgit v1.2.1