From 2974492e018e5e55080baba98ea1eb45aec73204 Mon Sep 17 00:00:00 2001 From: Rob Lazzurs Date: Thu, 17 Oct 2024 12:06:06 +0100 Subject: [PATCH] feat: Adding Dependabot configuration. Ensuring the GitHub actions (when added) and Terraform modules will be kept up to date. --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0dc0feb --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +--- +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "fix(dependabot)" + - package-ecosystem: "terraform" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "fix(dependabot)"