Skip to content

Commit

Permalink
chore(deps): update postgres docker tag to v16.2 (#439)
Browse files Browse the repository at this point in the history
* chore(deps): update postgres docker tag to v16.2

* upgrade postgres version

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raja Kolli <[email protected]>
  • Loading branch information
renovate[bot] and rajadilipkolli committed Feb 13, 2024
1 parent 055d624 commit 967e1de
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ services:
- broker

postgresqldb:
image: postgres:16.1-alpine
image: postgres:16.2-alpine
environment:
- POSTGRES_USER=appuser
- POSTGRES_PASSWORD=secret
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class TestBootKafkaReactorConsumerApplication {
@Bean
@ServiceConnection
PostgreSQLContainer<?> postgresContainer() {
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:16.1-alpine"));
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:16.2-alpine"));
}

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'
services:

postgresql:
image: postgres:16.1-alpine
image: postgres:16.2-alpine
environment:
- POSTGRES_USER=appuser
- POSTGRES_PASSWORD=secret
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
properties = {
"spring.jpa.hibernate.ddl-auto=validate",
"spring.test.database.replace=none",
"spring.datasource.url=jdbc:tc:postgresql:16.1-alpine:///db"
"spring.datasource.url=jdbc:tc:postgresql:16.2-alpine:///db"
})
class SchemaValidationTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ContainersConfig {
@Bean
@ServiceConnection
PostgreSQLContainer<?> postgreSQLContainer() {
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:16.1-alpine"));
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:16.2-alpine"));
}

@Bean
Expand Down

0 comments on commit 967e1de

Please sign in to comment.