From bcae90959ed501024f012686414d7071d88133cc Mon Sep 17 00:00:00 2001 From: Landon Curt Noll Date: Thu, 8 Dec 2022 14:36:15 -0800 Subject: [PATCH] Enable Dependabot version updateo See also: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabots --- .github/workflows/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 0000000..a7e2a68 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,12 @@ +# Set update schedule for GitHub Actions +# +# See https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly"