Upgraded databases

Signed-off-by: Patrick Baumgartner <contact@patbaumgartner.com>
This commit is contained in:
Patrick Baumgartner 2025-06-04 21:47:34 +02:00 committed by Dave Syer
parent 9264c4813f
commit 4a021e4ccf
5 changed files with 7 additions and 7 deletions

View file

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

View file

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