Skip to content

Commit c65868d

Browse files
chore(deps): update postgres docker tag to v18.3
1 parent 5e765b7 commit c65868d

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

aws-cloudwatch-project/src/test/java/com/example/awsspring/common/ContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ LocalStackContainer localstackContainer() {
2020
@Bean
2121
@ServiceConnection
2222
PostgreSQLContainer postgreSQLContainer() {
23-
return new PostgreSQLContainer(DockerImageName.parse("postgres").withTag("18.1-alpine"));
23+
return new PostgreSQLContainer(DockerImageName.parse("postgres").withTag("18.3-alpine"));
2424
}
2525
}

aws-kinesis-project/consumer/src/test/java/com/learning/aws/spring/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LocalStackContainer localStackContainer() {
2121
@Bean
2222
@ServiceConnection
2323
PostgreSQLContainer postgreSQLContainer() {
24-
return new PostgreSQLContainer(DockerImageName.parse("postgres:18.1-alpine"));
24+
return new PostgreSQLContainer(DockerImageName.parse("postgres:18.3-alpine"));
2525
}
2626

2727
@Bean

aws-lambda-project/src/test/java/com/learning/awslambda/ApplicationIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class ApplicationIntegrationTest {
6161
static Network network = Network.newNetwork();
6262

6363
@Container
64-
static PostgreSQLContainer postgres = new PostgreSQLContainer("postgres:18.1-alpine")
64+
static PostgreSQLContainer postgres = new PostgreSQLContainer("postgres:18.3-alpine")
6565
.withNetwork(network)
6666
.withNetworkAliases("postgres")
6767
.withReuse(true);

aws-lambda-project/src/test/java/com/learning/awslambda/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer postgreSQLContainer() {
15-
return new PostgreSQLContainer(DockerImageName.parse("postgres:18.1-alpine"));
15+
return new PostgreSQLContainer(DockerImageName.parse("postgres:18.3-alpine"));
1616
}
1717
}

aws-parameterstore-project/src/test/java/com/example/awsspring/TestApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class TestApplication {
1313
@Bean
1414
@ServiceConnection
1515
PostgreSQLContainer sqlContainer() {
16-
return new PostgreSQLContainer(DockerImageName.parse("postgres:18.1-alpine"));
16+
return new PostgreSQLContainer(DockerImageName.parse("postgres:18.3-alpine"));
1717
}
1818

1919
public static void main(String[] args) {

aws-s3-project/src/test/java/com/learning/awspring/common/SQLContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class SQLContainerConfig {
1414
@ServiceConnection
1515
@RestartScope
1616
PostgreSQLContainer postgresContainer() {
17-
return new PostgreSQLContainer(DockerImageName.parse("postgres:18.1-alpine"))
17+
return new PostgreSQLContainer(DockerImageName.parse("postgres:18.3-alpine"))
1818
.withReuse(true);
1919
}
2020
}

aws-secretmanager-project/src/test/java/com/example/awsspring/common/DBTestContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ public interface DBTestContainer {
99

1010
@Container @ServiceConnection
1111
PostgreSQLContainer sqlContainer =
12-
new PostgreSQLContainer(DockerImageName.parse("postgres").withTag("18.1-alpine"));
12+
new PostgreSQLContainer(DockerImageName.parse("postgres").withTag("18.3-alpine"));
1313
}

aws-sqs-project/src/test/java/com/learning/awspring/config/SQLTestcontainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class SQLTestcontainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer postgreSQLContainer() {
15-
return new PostgreSQLContainer(DockerImageName.parse("postgres").withTag("18.1-alpine"));
15+
return new PostgreSQLContainer(DockerImageName.parse("postgres").withTag("18.3-alpine"));
1616
}
1717
}

0 commit comments

Comments
 (0)