From 365b96437eeba461db8c60f64d6199b166e0c421 Mon Sep 17 00:00:00 2001 From: Mike Carey <32496966+mike-carey@users.noreply.github.com> Date: Fri, 20 Dec 2024 12:53:10 -0600 Subject: [PATCH] Creates a separate group for artifact actions rather than an update object (#70) --- .github/dependabot.yml | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fcf99815..90dfc9bf 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,27 +20,11 @@ updates: applies-to: version-updates patterns: - "*" - - # Artifact actions causing breaking changes. When this repo updates the upload-artifact action, - # the consuming repo must also update the download-artifact action and vice-versa. - - package-ecosystem: "github-actions" - directories: - - "/" - - "/.github/actions/**" - - "/actions/**" - schedule: - # Check for updates to Github Actions every week - interval: "weekly" - labels: - - "breaking changes" - - "dependencies" - ignore: - - dependency-name: '*' - allow: - - dependency-name: 'actions/upload-artifact' - - dependency-name: 'actions/download-artifact' - groups: + exclude-patterns: + - "actions/*-artifact" + # Artifact actions causing breaking changes. When this repo updates the upload-artifact action, + # the consuming repo must also update the download-artifact action and vice-versa. artifact-actions: applies-to: version-updates patterns: - - "*" + - "actions/*-artifact"