Updating MySql to 8.2

This commit is contained in:
Patrick Baumgartner 2023-11-18 16:55:56 +01:00
parent d2d68e1096
commit dedb25c9b9
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ class MySqlIntegrationTests {
@ServiceConnection
@Container
static MySQLContainer<?> container = new MySQLContainer<>("mysql:5.7");
static MySQLContainer<?> container = new MySQLContainer<>("mysql:8.2");
@LocalServerPort
int port;

View file

@ -36,7 +36,7 @@ public class MysqlTestApplication {
@Profile("mysql")
@Bean
static MySQLContainer<?> container() {
return new MySQLContainer<>("mysql:8.1");
return new MySQLContainer<>("mysql:8.2");
}
public static void main(String[] args) {