Skip to content

Commit

Permalink
Enable github-actions updates on renovate (#1898)
Browse files Browse the repository at this point in the history
# Pull Request

## 🀨 Rationale

Enable the renovate
[`github-actions`](https://docs.renovatebot.com/modules/manager/github-actions/)
manager to update our action versions

## πŸ‘©β€πŸ’» Implementation

Enabled in the renovate config following our current pattern of bundling
the changes for the manager in a single PR.

## πŸ§ͺ Testing

Not sure how to test a PR update to the renovate config. Doing it live

## βœ… Checklist

- [x] I have updated the project documentation to reflect my changes or
determined no changes are needed.
  • Loading branch information
rajsite authored Mar 4, 2024
1 parent 2521df5 commit fc97944
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"extends": [
"config:base"
],
"enabledManagers": ["npm", "nuget"],
"enabledManagers": ["npm", "nuget", "github-actions"],
"rebaseWhen": "conflicted",
"schedule": [
"monthly"
],
"packageRules": [
{
"matchManagers": ["npm", "nuget"],
"matchManagers": ["npm", "nuget", "github-actions"],
"enabled": false
},
{
Expand All @@ -24,6 +24,11 @@
"groupName": "nuget dependencies",
"matchManagers": ["nuget"],
"enabled": true
},
{
"groupName": "github actions dependencies",
"matchManagers": ["github-actions"],
"enabled": true
}
]
}

0 comments on commit fc97944

Please sign in to comment.