Skip to content

Commit ae438c0

Browse files
dependabot[bot]jormundur00
authored andcommitted
Bump postgres
Bumps postgres from 16-alpine to 18-alpine. --- updated-dependencies: - dependency-name: postgres dependency-version: 18-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 78b4562 commit ae438c0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres:16-alpine
1+
postgres:18-alpine

tests/src/org.flywaydb/flyway-database-postgresql/10.10.0/src/test/java/flyway/database/postgresql/FlywayDatabasePostgresqlTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static void beforeAll() throws IOException {
4242
System.out.println("Starting PostgreSQL ...");
4343
process = new ProcessBuilder(
4444
"docker", "run", "--rm", "-p", "5432:5432", "-e", "POSTGRES_DB=" + DATABASE, "-e", "POSTGRES_USER=" + USERNAME,
45-
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:16-alpine").redirectOutput(new File("postgres-stdout.txt"))
45+
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:18-alpine").redirectOutput(new File("postgres-stdout.txt"))
4646
.redirectError(new File("postgres-stderr.txt")).start();
4747

4848
// Wait until connection can be established
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres:16-alpine
1+
postgres:18-alpine

tests/src/org.postgresql/postgresql/42.3.4/src/test/java/postgresql/PostgresqlTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static void beforeAll() throws IOException {
6060
System.out.println("Starting PostgreSQL ...");
6161
process = new ProcessBuilder(
6262
"docker", "run", "--rm", "-p", "5432:5432", "-e", "POSTGRES_DB=" + DATABASE, "-e", "POSTGRES_USER=" + USERNAME,
63-
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:16-alpine").redirectOutput(new File("postgres-stdout.txt"))
63+
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:18-alpine").redirectOutput(new File("postgres-stdout.txt"))
6464
.redirectError(new File("postgres-stderr.txt")).start();
6565

6666
// Wait until connection can be established
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres:16-alpine
1+
postgres:18-alpine

tests/src/org.postgresql/postgresql/42.7.3/src/test/java/postgresql/PostgresqlTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static void beforeAll() throws IOException {
6060
System.out.println("Starting PostgreSQL ...");
6161
process = new ProcessBuilder(
6262
"docker", "run", "--rm", "-p", "5432:5432", "-e", "POSTGRES_DB=" + DATABASE, "-e", "POSTGRES_USER=" + USERNAME,
63-
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:16-alpine").redirectOutput(new File("postgres-stdout.txt"))
63+
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:18-alpine").redirectOutput(new File("postgres-stdout.txt"))
6464
.redirectError(new File("postgres-stderr.txt")).start();
6565

6666
// Wait until connection can be established
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM postgres:16-alpine
1+
FROM postgres:18-alpine

0 commit comments

Comments
 (0)