Skip to content

Commit ccb2731

Browse files
Renovate (#212)
* add renovate * updates
1 parent 6eeaba1 commit ccb2731

3 files changed

Lines changed: 20 additions & 16 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/renovatebot.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ name: renovatebot
22

33
on:
44
schedule:
5-
- cron: "15 3 1 * *"
5+
- cron: "15 3 14,28 * *"
66
push:
77
branches:
88
- master
99
paths:
1010
- '.github/workflows/**'
1111
workflow_dispatch:
1212

13+
permissions:
14+
contents: read
15+
1316
jobs:
1417
renovatebot-check:
1518
runs-on: ubuntu-24.04

renovate.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,27 @@
33
"extends": [
44
"config:recommended"
55
],
6-
"enabledManagers": ["github-actions"],
6+
"enabledManagers": ["github-actions", "gradle", "gradle-wrapper"],
77
"dependencyDashboard": false,
88
"packageRules": [
99
{
1010
"description": "Pin all GitHub Actions to SHA digests",
1111
"matchManagers": ["github-actions"],
12-
"pinDigests": true
12+
"pinDigests": true,
13+
"minimumReleaseAge": "7 days",
14+
"groupName": "Renovatebot GHA Updates"
15+
},
16+
{
17+
"description": "Group all Gradle wrapper updates into a single PR",
18+
"matchManagers": ["gradle-wrapper"],
19+
"minimumReleaseAge": "7 days",
20+
"groupName": "Renovatebot Gradle Wrapper Updates"
21+
},
22+
{
23+
"description": "Group all Gradle dependency updates into a single PR",
24+
"matchManagers": ["gradle"],
25+
"minimumReleaseAge": "7 days",
26+
"groupName": "Renovatebot Gradle Updates"
1327
}
1428
]
1529
}

0 commit comments

Comments
 (0)