From 94866e213e4a42afc1a103186a255ee3fdf19fca Mon Sep 17 00:00:00 2001 From: Ariel Mashraki <7413593+a8m@users.noreply.github.com> Date: Thu, 16 Jan 2020 13:20:25 +0200 Subject: [PATCH] ci: pin mysql8 to mysql 8.0.18 (not latest) (#293) Following my bug report in MySQL issue tracker, I've pinned MySQL8 version to be 8.0.18 until we figure out if it's a bug or a new change that we need to support. Link: https://bugs.mysql.com/bug.php\?id\=98250 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0b9ae9d84..3ec1bdf44 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -67,7 +67,7 @@ jobs: environment: <<: *mysql_env MYSQL_TCP_PORT: 3307 - - image: circleci/mysql:8 + - image: circleci/mysql:8.0.18 environment: <<: *mysql_env MYSQL_TCP_PORT: 3308