From 0bbbdda6dd90f85b548dad51938641ba7198a3db Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Tue, 30 Jan 2024 10:56:36 -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 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a426d88..3d27202 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,3 +1,14 @@ +# Dependabot configuration file +# +# +# Each ecosystem is checked on a scheduled interval defined below. To trigger +# a check manually, go to +# +# https://github.com/nextstrain/auspice.us/network/updates +# +# and look for a "Check for updates" button. You may need to click around a +# bit first. +--- version: 2 updates: - package-ecosystem: "npm" @@ -6,3 +17,8 @@ updates: interval: "daily" allow: - dependency-name: "auspice" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"