Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
database:
image: postgres:17.2
image: postgres:17.9
environment:
- POSTGRES_USER=test
- POSTGRES_PASSWORD=test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
public abstract class AbstractIntegrationTest {

static PostgreSQLContainer database =
new PostgreSQLContainer("postgres:17.2")
new PostgreSQLContainer("postgres:17.9")
.withDatabaseName("test")
.withUsername("duke")
.withPassword("s3cret");
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/de/rieckpil/courses/ApplicationIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ApplicationIT {

@Container
static PostgreSQLContainer database =
new PostgreSQLContainer("postgres:17.2")
new PostgreSQLContainer("postgres:17.9")
.withDatabaseName("test")
.withUsername("duke")
.withPassword("s3cret");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public DynamicPropertyRegistrar properties(
@Bean
@ServiceConnection
PostgreSQLContainer database() {
return new PostgreSQLContainer("postgres:17.2")
return new PostgreSQLContainer("postgres:17.9")
.withDatabaseName("test")
.withUsername("duke")
.withPassword("s3cret");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
class BookSynchronizationListenerIT {

static PostgreSQLContainer database =
new PostgreSQLContainer("postgres:17.2")
new PostgreSQLContainer("postgres:17.9")
.withDatabaseName("test")
.withUsername("duke")
.withPassword("s3cret");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ReviewRepositoryNoInMemoryTest {

@Container
static PostgreSQLContainer container =
new PostgreSQLContainer("postgres:17.2")
new PostgreSQLContainer("postgres:17.9")
.withDatabaseName("test")
.withUsername("duke")
.withPassword("s3cret");
Expand Down
Loading