Skip to content
Open
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
15 changes: 14 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,18 @@
datasourceTemplate: 'docker',
versioningTemplate: 'loose'
},
{
customType: 'regex',
fileMatch: [
'^tests\\/utils\\/minio\\/minio\\.go$',
],
matchStrings: [
'minioImage = "(?<depName>.+?):(?<currentValue>.*?)"',
'minioClientImage = "(?<depName>.+?):(?<currentValue>.*?)"',
],
datasourceTemplate: 'docker',
versioningTemplate: "regex:^RELEASE\\.(?<major>\\d{4})-(?<minor>\\d{2})-(?<patch>\\d{2})T\\d{2}-\\d{2}-\\d{2}Z$"
},
],
packageRules: [
{
Expand Down Expand Up @@ -266,7 +278,8 @@
separateMajorMinor: false,
pinDigests: false,
matchPackageNames: [
'vmware-tanzu{/,}**'
'vmware-tanzu{/,}**',
'minio{/,}**'
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ jobs:
# renovate: datasource=github-releases depName=vmware-tanzu/velero
VELERO_VERSION: "v1.16.1"
# renovate: datasource=github-releases depName=vmware-tanzu/velero
VELERO_AWS_PLUGIN_VERSION: "v1.12.1"
VELERO_AWS_PLUGIN_VERSION: "v1.16.1"
with:
timeout_minutes: 10
max_attempts: 3
Expand Down
4 changes: 3 additions & 1 deletion tests/utils/minio/minio.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ import (
)

const (
minioImage = "minio/minio:RELEASE.2025-05-24T17-08-30Z"
// minioImage is the image used to run a MinIO server
minioImage = "minio/minio:RELEASE.2025-05-24T17-08-30Z"
// minioClientImage is the image used to run a MinIO client
minioClientImage = "minio/mc:RELEASE.2025-05-21T01-59-54Z"
)

Expand Down
Loading