From c4acad41f9c60f45ae4a50246054925011456377 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sat, 21 May 2022 11:15:43 +0200 Subject: [PATCH] Add a Dependabot action for updating GitHub actions With this configuration, GitHub's Dependabot will create PR to update the versions of the GitHub Actions we are using in our CI pipeline. --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..4efbe887 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily"