diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e66ed8dbf3..f8469ae5a3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,7 @@ "cilium": "none" }, "ghcr.io/guiyomh/features/golangci-lint:0": {}, - "ghcr.io/devcontainers-contrib/features/kubectx-kubens:1": {}, + "ghcr.io/devcontainers-extra/features/kubectx-kubens:1": {}, "ghcr.io/dhoeric/features/stern:1": {} }, diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 7514f68745..bac35ed331 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -157,6 +157,19 @@ datasourceTemplate: 'docker', versioningTemplate: 'loose' }, + { + customType: 'regex', + fileMatch: [ + '^tests\\/utils\\/minio\\/minio\\.go$', + ], + matchStrings: [ + 'minioImage = "(?.+?):(?.*?)"\\n', + 'minioClientImage = "(?.+?):(?.*?)"\\n', + ], + datasourceTemplate: 'docker', + versioningTemplate: 'regex', + extractVersionTemplate: '^RELEASE\\.(?\\d+)-(?\\d+)-(?\\d+)T.*Z$', + }, ], packageRules: [ { diff --git a/.github/workflows/require-labels.yml b/.github/workflows/require-labels.yml index 775024a720..66638a0c73 100644 --- a/.github/workflows/require-labels.yml +++ b/.github/workflows/require-labels.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Require labels - uses: agilepathway/label-checker@v1.6.65 + uses: agilepathway/label-checker@c3d16ad512e7cea5961df85ff2486bb774caf3c5 # v1.6.65 with: any_of: "ok to merge :ok_hand:" none_of: "do not merge" diff --git a/tests/utils/minio/minio.go b/tests/utils/minio/minio.go index 6b1c337d80..3516bd7016 100644 --- a/tests/utils/minio/minio.go +++ b/tests/utils/minio/minio.go @@ -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