From 8d6ef7ac97e1068cb55f6e11d35d70a473ba5b7a Mon Sep 17 00:00:00 2001 From: jonasbn Date: Sat, 5 Oct 2024 10:50:01 +0200 Subject: [PATCH] Added basic configuration for Dependabot for GitHub Actions --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b55edeb --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# Basic dependabot.yml file +# REF: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-actions-up-to-date-with-dependabot + +version: 2 +updates: + # Enable version updates for Actions + - package-ecosystem: "github-actions" + # Look for `.github/workflows` in the `root` directory + directory: "/" + # Check for updates once a week + schedule: + interval: "weekly"