From dd0fda53ea12cd2d399fd96aeccf9bd009de5553 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 18 Jan 2024 13:41:42 +0100 Subject: [PATCH] chore(main): Keep GitHub Actions up to date with Dependabot (#220) * chore(main): Keep GitHub Actions up to date with Dependabot * https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot * Update dependabot.yml --- .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 00000000..4bd67e4c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# Keep GitHub Actions up to date with Dependabot... +# 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: "/" + groups: + GitHub_Actions: + patterns: + - "*" # Group all Actions updates into a single larger pull request + schedule: + interval: weekly