Skip to content

Commit

Permalink
Testcontainers v1.19.7. Pin mysql version for testcontainers.
Browse files Browse the repository at this point in the history
  • Loading branch information
kagkarlsson committed Mar 11, 2024
1 parent c62e580 commit 20c7600
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 @@ -19,7 +19,7 @@ public class Mysql8CompatibilityTest extends CompatibilityTest {

@Container
private static final MySQLContainer MY_SQL =
new MySQLContainer(DockerImageName.parse("mysql").withTag("8"));
new MySQLContainer(DockerImageName.parse("mysql").withTag("8.3"));

private static HikariDataSource pooledDatasource;

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>1.17.3</version>
<version>1.19.7</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Override to make testcontainers work on M1 -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.11.0</version>
<version>5.14.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down

0 comments on commit 20c7600

Please sign in to comment.