diff --git a/scripts/postgres-with-docker-compose.yaml b/scripts/postgres-with-docker-compose.yaml index b072fbf..7be6b68 100644 --- a/scripts/postgres-with-docker-compose.yaml +++ b/scripts/postgres-with-docker-compose.yaml @@ -3,7 +3,7 @@ version: "3.9" services: postgres: container_name: postgres - image: postgres:14 + image: postgres:16 environment: POSTGRES_USER: admin POSTGRES_PASSWORD: password diff --git a/src/integrationTest/resources/application-test.properties b/src/integrationTest/resources/application-test.properties index 771d210..720abd4 100644 --- a/src/integrationTest/resources/application-test.properties +++ b/src/integrationTest/resources/application-test.properties @@ -3,7 +3,7 @@ logging.level.com.trynoice.api=trace spring.flyway.locations=classpath:db/migration/common,classpath:db/migration/development,classpath:db/migration/test -spring.datasource.url=jdbc:tc:postgresql:14:///api-integration-tests +spring.datasource.url=jdbc:tc:postgresql:16:///api-integration-tests spring.jpa.hibernate.ddl-auto=validate spring.cloud.gcp.pubsub.enabled=false