Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b05aef1
renovate config
morrison-sap Jan 20, 2026
9b198fb
test renovate
morrison-sap Jan 20, 2026
c04a9e3
test renovate
morrison-sap Jan 20, 2026
f143bb4
renovate: group Go version (go directive) + golang Docker image updat…
morrison-sap Jan 20, 2026
80890ae
test renovate
morrison-sap Jan 20, 2026
266675d
renovate: ensure docker golang image updates are grouped with go dire…
morrison-sap Jan 20, 2026
61ba32b
test: set go directive and golang Docker image to 1.25.5 to verify Re…
morrison-sap Jan 20, 2026
e4c0c3f
chore: trigger renovate run
morrison-sap Jan 20, 2026
f9f37f1
chore: trigger renovate run
morrison-sap Jan 20, 2026
49e61c8
test renovate
morrison-sap Jan 20, 2026
57ccfaa
chore: trigger renovate run (golang versions)
morrison-sap Jan 20, 2026
abd3917
test: set go 1.25.5 and golang:1.25.5 to verify grouped Renovate PR t…
morrison-sap Jan 20, 2026
b15272f
chore: trigger renovate run for golang 1.25.5 -> 1.25.6 grouped PR
morrison-sap Jan 20, 2026
569e946
fix(renovate): use matchPackageNames instead of matchDepNames for gol…
morrison-sap Jan 20, 2026
5392f2a
chore: trigger renovate with fixed matchPackageNames
morrison-sap Jan 20, 2026
ded38ff
chore: trigger renovate run (golang versions)
morrison-sap Jan 20, 2026
41aae96
fix(renovate): exclude go/golang from matchCategories to prevent sche…
morrison-sap Jan 20, 2026
5d7ae5e
chore: trigger renovate with fixed golang category exclusion
morrison-sap Jan 20, 2026
f667e3e
fix: add digest pin for golang:1.25.5 to work with docker:pinDigests
morrison-sap Jan 20, 2026
f76b179
chore: trigger renovate with pinned digest
morrison-sap Jan 20, 2026
93bc18f
fix(renovate): use matchPackagePatterns for golang grouping
morrison-sap Jan 20, 2026
404fb65
fix(renovate): split golang grouping into two rules - one for gomod d…
morrison-sap Jan 20, 2026
5bdbe62
chore: trigger renovate with corrected golang grouping rules
morrison-sap Jan 20, 2026
3fc35b9
chore: trigger renovate run (golang versions)
morrison-sap Jan 20, 2026
bc0ccca
chore(config): migrate config .github/renovate.json5
renovate[bot] Jan 20, 2026
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
90 changes: 55 additions & 35 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,48 @@
'git-submodules': {
enabled: true,
},
'updateNotScheduled': true, // Update branches that have already been created
'minimumReleaseAge': '28 days',
'branchPrefix': 'renovate/',
'gitAuthor': 'ocmbot[bot] <125909804+ocmbot[bot]@users.noreply.github.com>',
'gitIgnoredAuthors': [
updateNotScheduled: false,
minimumReleaseAge: '28 days',
branchPrefix: 'renovate/',
gitAuthor: 'ocmbot[bot] <125909804+ocmbot[bot]@users.noreply.github.com>',
gitIgnoredAuthors: [
'125909804+ocmbot[bot]@users.noreply.github.com',
],
prConcurrentLimit: 0,
prHourlyLimit: 0,
automerge: false,
automergeType: "pr",
automergeType: 'pr',
separateMinorPatch: true,
separateMultipleMajor: true,
packageRules: [
{
matchUpdateTypes: ['minor','patch'],
matchUpdateTypes: [
'minor',
'patch',
],
automerge: true,
},
{
matchDatasources: ["golang-version"],
rangeStrategy: "bump",
groupName: "Golang versions",
groupSlug: "golang-versions",
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
description: 'Group golang versions (go directive from go.mod)',
matchDatasources: [
'golang-version',
],
rangeStrategy: 'bump',
groupName: 'Golang versions',
groupSlug: 'golang-versions',
minimumReleaseAge: null,
},
{
description: 'Group golang Docker image updates',
matchManagers: [
'dockerfile',
],
matchPackageNames: [
'golang',
],
groupName: 'Golang versions',
groupSlug: 'golang-versions',
minimumReleaseAge: null,
},
{
matchManagers: [
Expand All @@ -55,8 +71,8 @@
groupName: 'Kubernetes dependencies',
groupSlug: 'kubernetes-deps',
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
]
'* * * * 0',
],
},
{
groupName: 'Docker dependencies',
Expand All @@ -65,48 +81,48 @@
'github.com/docker/{/,}**',
],
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
]
'* * * * 0',
],
},
{
groupName: 'Golang X Repositories',
groupSlug: 'golang-x-repos',
matchPackageNames: [
'golang.org/x/{/,}**'
'golang.org/x/{/,}**',
],
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
]
'* * * * 0',
],
},
{
groupName: 'Google Golang Repositories',
groupSlug: 'google-golang-repos',
matchPackageNames: [
'google.golang.org/{/,}**'
'google.golang.org/{/,}**',
],
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
]
'* * * * 0',
],
},
{
groupName: 'Sigstore Repositories',
groupSlug: 'sigstore',
matchPackageNames: [
'github.com/sigstore/{/,}**'
'github.com/sigstore/{/,}**',
],
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
]
'* * * * 0',
],
},
{
groupName: 'spf13 repositories',
groupSlug: 'spf13',
matchPackageNames: [
'github.com/spf13/{/,}**'
'github.com/spf13/{/,}**',
],
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
]
'* * * * 0',
],
},
{
matchCategories: [
Expand All @@ -117,8 +133,12 @@
],
enabled: true,
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
]
'* * * * 0',
],
matchPackageNames: [
'!go',
'!golang',
],
},
{
matchManagers: [
Expand All @@ -132,8 +152,8 @@
],
enabled: false,
schedule: [
'* * * * 0' // At every minute on Sunday it is allowed to create branches
]
'* * * * 0',
],
},
{
matchManagers: [
Expand All @@ -144,8 +164,8 @@
matchPackageNames: [
'ocm.software/open-component-model/**',
],
'schedule': [
'* 22,0-6 * * *' // At every minute past hour 22 and every hour from 0 through 6.
schedule: [
'* 22,0-6 * * *',
],
minimumReleaseAge: null,
},
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=${BUILDPLATFORM} golang:1.25@sha256:6cc2338c038bc20f96ab32848da2b5c0641bb9bb5363f2c33e9b7c8838f9a208 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.25.5@sha256:0e82796be275aefaf73c5abe3d3646c09b557aba982e87a42b2e3ceccf0e0e75 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
Loading