Skip to content

Commit

Permalink
Merge branch 'main' into renovate/mysql-8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli authored Oct 27, 2023
2 parents d59da0e + 7e2510a commit 653f2a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class TestApplication {
@ServiceConnection
@RestartScope
MySQLContainer<?> sqlContainer() {
return new MySQLContainer<>("mysql:8.1");
return new MySQLContainer<>("mysql:8.2");
}

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
class ApplicationIntegrationTest {

@Container
private static final MySQLContainer<?> MY_SQL_CONTAINER = new MySQLContainer<>("mysql:8.0");
private static final MySQLContainer<?> MY_SQL_CONTAINER = new MySQLContainer<>("mysql:8.2");

@Container
private static final PostgreSQLContainer<?> POSTGRE_SQL_CONTAINER =
new PostgreSQLContainer<>("postgres:15.3-alpine");
new PostgreSQLContainer<>("postgres:16.0-alpine");

@DynamicPropertySource
static void registerDynamicProperties(DynamicPropertyRegistry registry) {
Expand Down

0 comments on commit 653f2a6

Please sign in to comment.