This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 4abfa304d99 (chores) camel-test-postgres: update container to the latest version 4abfa304d99 is described below commit 4abfa304d99dd9d994d844d5cd88b3f2cb0eb16a Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Fri Nov 17 18:53:05 2023 +0100 (chores) camel-test-postgres: update container to the latest version Updates the container to 13.13 --- .../test/infra/postgres/services/PostgresLocalContainerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/services/PostgresLocalContainerService.java b/test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/services/PostgresLocalContainerService.java index 44dbfb84e8c..ae17e7868ec 100644 --- a/test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/services/PostgresLocalContainerService.java +++ b/test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/services/PostgresLocalContainerService.java @@ -23,7 +23,7 @@ import org.slf4j.LoggerFactory; import org.testcontainers.containers.PostgreSQLContainer; public class PostgresLocalContainerService implements PostgresService, ContainerService<PostgreSQLContainer> { - public static final String DEFAULT_POSTGRES_CONTAINER = "postgres:13.0"; + public static final String DEFAULT_POSTGRES_CONTAINER = "postgres:13.13"; private static final Logger LOG = LoggerFactory.getLogger(PostgresLocalContainerService.class); private final PostgreSQLContainer container;