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
16 changes: 15 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,19 @@
datasourceTemplate: 'docker',
versioningTemplate: 'loose'
},
{
customType: 'regex',
fileMatch: [
'^tests\\/utils\\/minio\\/minio\\.go$',
],
matchStrings: [
'minioImage = "(?<depName>.+?):(?<currentValue>.*?)"\\n',
'minioClientImage = "(?<depName>.+?):(?<currentValue>.*?)"\\n',
],
datasourceTemplate: 'docker',
versioningTemplate: 'regex',
extractVersionTemplate: '^RELEASE\\.(?<version>\\d{4}-\\d{2}-\\d{2}T\\d{2}-\\d{2}-\\d{2})Z$'
},
],
packageRules: [
{
Expand Down Expand Up @@ -266,7 +279,8 @@
separateMajorMinor: false,
pinDigests: false,
matchPackageNames: [
'vmware-tanzu{/,}**'
'vmware-tanzu{/,}**',
'minio{/,}**'
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions: read-all

env:
# renovate: datasource=golang-version depName=golang versioning=loose
GOLANG_VERSION: "1.24.x"
GOLANG_VERSION: "1.24.4"

jobs:
# Label the source pull request with 'backport-requested' and all supported releases label, the goal is, by default
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ permissions: read-all
# set up environment variables to be used across all the jobs
env:
# renovate: datasource=golang-version depName=golang versioning=loose
GOLANG_VERSION: "1.24.x"
GOLANG_VERSION: "1.24.4"

jobs:
duplicate_runs:
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 @@ -37,7 +37,7 @@ permissions: read-all
# set up environment variables to be used across all the jobs
env:
# renovate: datasource=golang-version depName=golang versioning=loose
GOLANG_VERSION: "1.24.x"
GOLANG_VERSION: "1.24.4"
KUBEBUILDER_VERSION: "2.3.1"
# renovate: datasource=github-tags depName=kubernetes-sigs/kind versioning=semver
KIND_VERSION: "v0.29.0"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions: read-all
# set up environment variables to be used across all the jobs
env:
# renovate: datasource=golang-version depName=golang versioning=loose
GOLANG_VERSION: "1.24.x"
GOLANG_VERSION: "1.24.4"
# renovate: datasource=github-releases depName=golangci/golangci-lint versioning=loose
GOLANGCI_LINT_VERSION: "v2.1.6"
KUBEBUILDER_VERSION: "2.3.1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/refresh-licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all

env:
# renovate: datasource=golang-version depName=golang versioning=loose
GOLANG_VERSION: "1.24.x"
GOLANG_VERSION: "1.24.4"

jobs:
licenses:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions: read-all

env:
# renovate: datasource=golang-version depName=golang versioning=loose
GOLANG_VERSION: "1.24.x"
GOLANG_VERSION: "1.24.4"
REGISTRY: "ghcr.io"

jobs:
Expand Down
6 changes: 4 additions & 2 deletions tests/utils/minio/minio.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ import (
)

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

// Env contains all the information related or required by MinIO deployment and
Expand Down
Loading