From 5171bf010d581f670295c0d09d05ff0c2e400dd6 Mon Sep 17 00:00:00 2001 From: axunonb Date: Mon, 29 Apr 2024 22:24:20 +0200 Subject: [PATCH] CI: Add dependabot.yaml to configure GitHub workflow updates (#169) --- .github/dependabot.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..c8133c9 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,9 @@ +# Set update schedule for GitHub Actions +# ref: 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: + interval: "monthly" # Check for updates to GitHub Actions on the first day of every month + \ No newline at end of file