10000 [#1082] Upgrade to PostgreSQL 14.1 for testing · hibernate/hibernate-reactive@4bfbfc9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4bfbfc9

Browse files
committed
[#1082] Upgrade to PostgreSQL 14.1 for testing
1 parent fa87bd3 commit 4bfbfc9

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:14.0
43+
image: postgres:14.1
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
@@ -50,7 +50,7 @@ jobs:
5050
- 3306:3306
5151
postgres:
5252
# Docker Hub image
53-
image: postgres:14.0
53+
image: postgres:14.1
5454
env:
5555
POSTGRES_DB: hreact
5656
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:14.0
51+
image: postgres:14.1
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
@@ -34,7 +34,7 @@ class PostgreSQLDatabase implements TestableDatabase {
3434

3535
public static PostgreSQLDatabase INSTANCE = new PostgreSQLDatabase();
3636

37-
public final static String IMAGE_NAME = "postgres:14";
37+
public final static String IMAGE_NAME = "postgres:14.1";
3838

3939
private static Map<Class<?>, String> expectedDBTypeForClass = new HashMap<>();
4040

podman.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ required credentials and schema to run the tests:
3838
```
3939
podman run --rm --name HibernateTestingPGSQL \
4040
-e POSTGRES_USER=hreact -e POSTGRES_PASSWORD=hreact -e POSTGRES_DB=hreact \
41-
-p 5432:5432 postgres:14.0
41+
-p 5432:5432 postgres:14.1
4242
```
4343

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

0 commit comments

Comments
 (0)
0