Skip to content

Commit f8401b4

Browse files
committed
update mysql and postgres containers Versions
1 parent adb5e26 commit f8401b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jdbc/testkit/src/main/scala/app/softnetwork/persistence/jdbc/scalatest/MySQLTestKit.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ trait MySQLTestKit extends JdbcContainerTestKit { _: Suite =>
99

1010
override val schemaType: SchemaType = MySQL
1111

12-
def mysqlVersion: String = "5.7"
12+
def mysqlVersion: String = "8"
1313

1414
lazy val jdbcContainer = new MySQLContainer(s"mysql:$mysqlVersion")
1515

jdbc/testkit/src/main/scala/app/softnetwork/persistence/jdbc/scalatest/PostgresTestKit.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ trait PostgresTestKit extends JdbcContainerTestKit { _: Suite =>
99

1010
override val schemaType: SchemaType = Postgres
1111

12-
def postgresVersion: String = "9.6"
12+
def postgresVersion: String = "13"
1313

1414
lazy val jdbcContainer = new PostgreSQLContainer(s"postgres:$postgresVersion")
1515

0 commit comments

Comments
 (0)