From e4c2bd8809defd884e215920973cfa7ea9dd4bc9 Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Tue, 30 Jan 2024 10:51:26 -0800 Subject: [PATCH] Automatically check for new GitHub actions versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Configure Dependabot to do this for us,¹ as discussed in Slack.² ¹ ² Co-authored-by: Victor Lin <13424970+victorlin@users.noreply.github.com> --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..51b8e3dc --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +# Dependabot configuration file +# +# +# Each ecosystem is checked on a scheduled interval defined below. To trigger +# a check manually, go to +# +# https://github.com/nextstrain/seasonal-flu/network/updates +# +# and look for a "Check for updates" button. You may need to click around a +# bit first. +--- +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"