Skip to content

Commit 5d39c3a

Browse files
committed
[#733] Upgrade Postgres to 13.2
1 parent 354bec0 commit 5d39c3a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- 3306:3306
4141
postgres:
4242
# Docker Hub image
43-
image: postgres:13.1
43+
image: postgres:13.2
4444
env:
4545
POSTGRES_DB: hreact
4646
POSTGRES_USER: hreact

.github/workflows/tracking-orm-5.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- 3306:3306
4949
postgres:
5050
# Docker Hub image
51-
image: postgres:13.0
51+
image: postgres:13.2
5252
env:
5353
POSTGRES_DB: hreact
5454
POSTGRES_USER: hreact

.github/workflows/tracking-vertx-4.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- 3306:3306
4949
postgres:
5050
# Docker Hub image
51-
image: postgres:13.0
51+
image: postgres:13.2
5252
env:
5353
POSTGRES_DB: hreact
5454
POSTGRES_USER: hreact

hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers/PostgreSQLDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class PostgreSQLDatabase implements TestableDatabase {
1111

1212
public static PostgreSQLDatabase INSTANCE = new PostgreSQLDatabase();
1313

14-
public final static String IMAGE_NAME = "postgres:13.1";
14+
public final static String IMAGE_NAME = "postgres:13.2";
1515

1616
/**
1717
* Holds configuration for the PostgreSQL database container. If the build is run with <code>-Pdocker</code> then

podman.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ required credentials and schema to run the tests:
3737
```
3838
podman run --rm --name HibernateTestingPGSQL \
3939
-e POSTGRES_USER=hreact -e POSTGRES_PASSWORD=hreact -e POSTGRES_DB=hreact \
40-
-p 5432:5432 postgres:13.1
40+
-p 5432:5432 postgres:13.2
4141
```
4242

4343
When the database has started, you can run the tests on PostgreSQL with:

0 commit comments

Comments
 (0)