-
Notifications
You must be signed in to change notification settings - Fork 4
/
renovate.json5
34 lines (34 loc) · 1.09 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["github>pulumi/renovate-config//default.json5"],
"github-actions": {
// Extend our matching to maintain our default action versions.
fileMatch: [".*/action-versions\\.ya?ml$"],
ignorePaths: [
"provider-ci/test-providers/**",
"native-provider-ci/providers/**",
],
},
packageRules: [
{
matchManagers: ["github-actions"],
// Automatically submit PRs to bump GitHub actions.
dependencyDashboardApproval: false,
// Only bump to releases older than 7 days since these will include
// third-party / untrusted actions.
minimumReleaseAge: "7 days",
// Re-generate test workflows in case action versions have been bumped.
postUpgradeTasks: {
commands: ["make build"],
executionMode: "branch", // Only run once.
},
},
// Pins
{
// GoReleases has backwards-incompatible changes in v6.
matchManagers: ["github-actions"],
matchPackageNames: ["goreleaser/goreleaser-action"],
allowedVersions: "^5",
},
],
}