From fdcf2855888cf78e08756eb63d26367a0f338ac2 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 22 Dec 2025 09:35:40 +0100 Subject: [PATCH] CI: Create mysql user for the correct host --- .github/actions/setup-database/action.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/actions/setup-database/action.yml b/.github/actions/setup-database/action.yml index f46ed19c3c..530e009bc5 100644 --- a/.github/actions/setup-database/action.yml +++ b/.github/actions/setup-database/action.yml @@ -48,13 +48,20 @@ runs: run: | # Note: MySQL server configuration (character set, collation, row format) is set # via my-cnf in the shogo82148/actions-setup-mysql action. - # The user 'evennia' is already created by the action, but we need to create the database - # and grant privileges. + # The user 'evennia' is already created by the action for hosts: localhost, 127.0.0.1, and ::1 + # We just need to create the database and grant additional privileges. mysql -u root -proot_password mysql <