Skip to content

Commit 227cea7

Browse files
committed
[#733] Upgrade MySQL to 8.0.24
1 parent 7031c94 commit 227cea7

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
@@ -24,7 +24,7 @@ jobs:
2424
# Label used to access the service container
2525
mysql:
2626
# Docker Hub image
27-
image: mysql:8.0.23
27+
image: mysql:8.0.24
2828
env:
2929
MYSQL_ROOT_PASSWORD: hreact
3030
MYSQL_DATABASE: hreact

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Label used to access the service container
3333
mysql:
3434
# Docker Hub image
35-
image: mysql:8
35+
image: mysql:8.0.24
3636
env:
3737
MYSQL_ROOT_PASSWORD: hreact
3838
MYSQL_DATABASE: hreact

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Label used to access the service container
3333
mysql:
3434
# Docker Hub image
35-
image: mysql:8
35+
image: mysql:8.0.24
3636
env:
3737
MYSQL_ROOT_PASSWORD: hreact
3838
MYSQL_DATABASE: hreact

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class MySQLDatabase implements TestableDatabase {
99

1010
static MySQLDatabase INSTANCE = new MySQLDatabase();
1111

12-
public final static String IMAGE_NAME = "mysql:8.0.23";
12+
public final static String IMAGE_NAME = "mysql:8.0.24";
1313

1414
/**
1515
* Holds configuration for the MySQL 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
@@ -93,7 +93,7 @@ and schema to run the tests:
9393
```
9494
podman run --rm --name HibernateTestingMySQL \
9595
-e MYSQL_ROOT_PASSWORD=hreact -e MYSQL_DATABASE=hreact -e MYSQL_USER=hreact -e MYSQL_PASSWORD=hreact \
96-
-p 3306:3306 mysql:8.0.23
96+
-p 3306:3306 mysql:8.0.24
9797
```
9898

9999
When the database has started, you can run the tests on MySQL with:

0 commit comments

Comments
 (0)