This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 2.7.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit d9c4bc1da13a2f4977f0a1c7a8c4e57f031a7203 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Tue Jun 7 07:16:10 2022 +0100 Pin fake-gcs-server container image to 1.37 tag --- .../quarkus/component/google/storage/it/GoogleStorageTestResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/google-storage/src/test/java/org/apache/camel/quarkus/component/google/storage/it/GoogleStorageTestResource.java b/integration-tests/google-storage/src/test/java/org/apache/camel/quarkus/component/google/storage/it/GoogleStorageTestResource.java index 234da5c774..a18d4476fc 100644 --- a/integration-tests/google-storage/src/test/java/org/apache/camel/quarkus/component/google/storage/it/GoogleStorageTestResource.java +++ b/integration-tests/google-storage/src/test/java/org/apache/camel/quarkus/component/google/storage/it/GoogleStorageTestResource.java @@ -27,7 +27,7 @@ import org.testcontainers.containers.GenericContainer; public class GoogleStorageTestResource implements QuarkusTestResourceLifecycleManager { public static final int PORT = AvailablePortFinder.getNextAvailable(); - public static final String CONTAINER_NAME = "fsouza/fake-gcs-server"; + public static final String CONTAINER_NAME = "fsouza/fake-gcs-server:1.37"; private GenericContainer<?> container;