From c9f64f42a1e615e10dba521a1eaefcc6f1dc4dbd Mon Sep 17 00:00:00 2001 From: "Peter A. Jonsson" Date: Thu, 2 Nov 2023 20:49:05 +0100 Subject: [PATCH] CI: add dependabot configuration Dependabot can provide automatic pull requests for things in the repository that should be updated. Example PR from dependabot against a repo owned by the github organization: https://github.com/github/opensource.guide/pull/2248 Documentation: https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/about-dependabot-security-updates --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..378c4749 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: +- package-ecosystem: github-actions + directory: "/" + schedule: + interval: "daily" + target-branch: "main"