Skip to content

Commit

Permalink
chore: temporarily pin mysql image to avoid test regressions (#755)
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick authored Jan 24, 2024
1 parent 3c00b67 commit 4c9cf3b
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 @@ -33,7 +33,7 @@ public class ConfigurationAsCodeNeedDockerTest {

@Container
public static MySQLContainer<?> MYSQL_DB =
new MySQLContainer<>(MySQLContainer.NAME).withUsername("aUser").withPassword("aPass");
new MySQLContainer<>("mysql:8.2.0").withUsername("aUser").withPassword("aPass");

@Container
public static PostgreSQLContainer<?> POSTGRE_DB = new PostgreSQLContainer<>(PostgreSQLContainer.IMAGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class GlobalPipelineMavenConfigTest {

@Container
public static MySQLContainer<?> MYSQL_DB =
new MySQLContainer<>(MySQLContainer.NAME).withUsername("aUser").withPassword("aPass");
new MySQLContainer<>("mysql:8.2.0").withUsername("aUser").withPassword("aPass");

@Container
public static PostgreSQLContainer<?> POSTGRE_DB = new PostgreSQLContainer<>(PostgreSQLContainer.IMAGE)
Expand Down

0 comments on commit 4c9cf3b

Please sign in to comment.