Skip to content

Commit

Permalink
chore(deps): update mysql in testcontainers to 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli authored May 1, 2024
1 parent 2693579 commit ae22fdd
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.3");
return new MySQLContainer<>("mysql:8.4");
}

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.2");
private static final MySQLContainer<?> MY_SQL_CONTAINER = new MySQLContainer<>("mysql:8.4");

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

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

0 comments on commit ae22fdd

Please sign in to comment.