Skip to content

Commit

Permalink
Update actions/*-artifact actions in an independent group
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-carey committed Dec 20, 2024
1 parent 189e90f commit 0125df7
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,35 @@ updates:
interval: "weekly"
labels:
- "dependencies"
ignore:
- dependency-name: 'actions/upload-artifact'
- dependency-name: 'actions/download-artifact'
groups:
all-actions:
applies-to: version-updates
patterns:
- "*"
exclude-patterns:
# These actions require major release updates
- "actions/upload-artifact"
- "actions/download-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.
- 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:
artifact-actions:
applies-to: version-updates
patterns:
- "*"

0 comments on commit 0125df7

Please sign in to comment.