From 021eae3832eab121920fe53eeae15039c0c1e771 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Tue, 21 May 2024 22:53:07 +0800 Subject: [PATCH] Introduce dependabot version updates The current configuration will present a PR (monthly) to bump Action versions used in "Github Actions" script. This will help keeping the Action versions up to date. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/about-dependabot-version-updates --- .github/workflows/dependabot.yml | 11 +++++++++++ 1 file changed, 11 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 00000000..d4b61945 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 + +updates: + - package-ecosystem: "github-actions" + directory: "/" + groups: + github-actions: + patterns: + - "*" + schedule: + interval: "monthly"