Skip to content

Commit 8142925

Browse files
fix: update s3 backend MinIO test image (#3437)
Signed-off-by: Matías Insaurralde <matias@chainloop.dev>
1 parent d9d7183 commit 8142925

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

‎pkg/blobmanager/s3/backend_test.go‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,9 @@ func newMinioInstance(t *testing.T) *minioInstance {
345345
const port = "9000/tcp"
346346

347347
req := testcontainers.ContainerRequest{
348-
Image: "minio/minio:RELEASE.2023-09-04T19-57-37Z",
348+
// Pinned to a fixed digest to keep the test reproducible; update the digest manually to adopt new MinIO releases.
349+
// https://quay.io/repository/minio/minio/manifest/sha256:a1a8bd4ac40ad7881a245bab97323e18f971e4d4cba2c2007ec1bedd21cbaba2
350+
Image: "quay.io/minio/minio@sha256:a1a8bd4ac40ad7881a245bab97323e18f971e4d4cba2c2007ec1bedd21cbaba2",
349351
ExposedPorts: []string{port},
350352
Env: map[string]string{
351353
"MINIO_ROOT_USER": "root",

0 commit comments

Comments
 (0)