From cc58a28bd21498ac9f1bdabd1b98b42f910b42a6 Mon Sep 17 00:00:00 2001 From: Hiroyuki Sato Date: Thu, 29 Aug 2024 13:48:59 +0900 Subject: [PATCH] Update .github/workflows/check.yml Co-authored-by: Dai MIKURUBE --- .github/workflows/check.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index cd337877..f39c27f4 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -78,9 +78,8 @@ jobs: # Workaround to change MySQL's password mechanism to `mysql_native_password` # from `caching_sha2_password` that is the default in MySQL 8 because # Connector/J 5.x does not support `caching_sha2_password`. + # See: https://dev.mysql.com/doc/refman/8.4/en/account-names.html # TODO: Start testing with `caching_sha2_password` with Connector/J 8.x. - # - # See also: https://dev.mysql.com/doc/refman/8.4/en/account-names.html - name: Change password (root@localhost) run: mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';" - name: Change password (root@%)