Skip to content

Commit

Permalink
chore(deps): update mysql docker tag to v9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Jan 22, 2025
1 parent b759f80 commit 09c4ba0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ public class ContainerConfig {
@ServiceConnection
@RestartScope
MySQLContainer<?> sqlContainer() {
return new MySQLContainer<>(DockerImageName.parse("mysql:9.1"));
return new MySQLContainer<>(DockerImageName.parse("mysql:9.2"));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ContainersConfiguration {

@Bean
MySQLContainer<?> mySQLContainer() {
return new MySQLContainer<>(DockerImageName.parse("mysql").withTag("9.1"));
return new MySQLContainer<>(DockerImageName.parse("mysql").withTag("9.2"));
}

@Bean
Expand Down

0 comments on commit 09c4ba0

Please sign in to comment.