Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 17 additions & 15 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@
],
},
],
postUpgradeTasks: {
commands: [
'make vendor-go learn-tools-shas',
],
executionMode: 'branch',
},
baseBranchPatterns: [
'main',
'octo-sts-poc',
Expand All @@ -56,18 +50,18 @@
matchManagers: [
'custom.regex',
],
matchPackageNames: [
'*',
]
postUpgradeTasks: {
commands: [
'make vendor-go learn-tools-shas',
],
executionMode: 'branch',
}
},
{
groupName: 'Misc GitHub actions',
matchManagers: [
'github-actions',
],
matchPackageNames: [
'*',
],
enabled: true,
matchBaseBranches: [
'octo-sts-poc',
Expand All @@ -78,10 +72,18 @@
matchManagers: [
'gomod',
],
matchPackageNames: [
'*',
],
},
{
matchManagers: [
'custom.regex',
'gomod',
],
matchUpdateTypes: [
'major',
'digest',
],
dependencyDashboardApproval: true
}
],
ignorePaths: [
'**/vendor/**',
Expand Down
17 changes: 12 additions & 5 deletions modules/repository-base/base-dependabot/.github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
matchManagers: [
'gomod',
],
matchPackageNames: [
'*',
],
},
{
groupName: 'Testing Go deps',
Expand Down Expand Up @@ -105,12 +102,22 @@
],
},
{
description: 'Disable Go pseudo-version updates',
matchManagers: [
'gomod',
],
matchUpdateTypes: [
'major',
'digest',
],
dependencyDashboardApproval: true
},
{
description: 'Disable (internal) cert-manager pseudo-version updates',
matchManagers: [
'gomod',
],
matchPackageNames: [
'*',
'github.com/cert-manager/**',
],
matchCurrentValue: 'v0.0.0*',
enabled: false,
Expand Down
Loading