From 32e032ff10aac26b071eb3d381c2338755542fc0 Mon Sep 17 00:00:00 2001 From: Paul Kronenwetter Date: Sat, 17 Sep 2022 14:30:50 +0000 Subject: [PATCH] Update dependabot.yml file Correct YAML syntax by adding version and update entries. --- .github/dependabot.yml | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3fffc690..04930051 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,19 +1,21 @@ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +version: 2 +updates: -# Maintain dependencies for GitHub Actions -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" -# Maintain dependencies for npm -- package-ecosystem: "npm" - directory: "/" - schedule: - interval: "daily" + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" -# Maintain dependencies for pip -- package-ecosystem: "pip" - directory: "/" - schedule: - interval: "daily" + # Maintain dependencies for pip + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily"