From f22821cd8994715ddc12adf68388c22ec3639455 Mon Sep 17 00:00:00 2001 From: Lachlan Heywood Date: Tue, 7 Jan 2025 11:57:12 -0500 Subject: [PATCH] ci: update and format .github/dependabot.yml Signed-off-by: Lachlan Heywood --- .github/dependabot.yml | 55 ++++++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 26 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 07d3ca8..4cfaf51 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,28 +1,31 @@ version: 2 updates: -- package-ecosystem: "npm" - directory: "/" - schedule: - interval: "weekly" - day: "monday" - time: "09:00" - timezone: "America/New_York" - groups: - dev-dependencies: - dependency-type: "development" - update-types: - - "minor" - - "patch" - prod-dependencies: - dependency-type: "production" - update-types: - - "minor" - - "patch" -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" -- package-ecosystem: "github-actions" - directory: "/.github/actions/*" - schedule: - interval: "daily" \ No newline at end of file + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'weekly' + day: 'monday' + time: '09:00' + timezone: 'America/New_York' + groups: + dev-dependencies: + dependency-type: development + update-types: + - minor + - patch + prod-dependencies: + dependency-type: production + update-types: + - minor + - patch + - package-ecosystem: 'github-actions' + directory: '/.github' + schedule: + interval: 'daily' + groups: + workflows: + patterns: + - '.github/workflows/*.yml' + actions: + patterns: + - '.github/actions/**/*.yml'