Skip to content

Commit e1b5d77

Browse files
committed
explicitely set to false
1 parent 5681030 commit e1b5d77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-install.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
image: mysql:5.7
1717
env:
1818
MYSQL_ALLOW_EMPTY_PASSWORD: true
19-
MYSQL_ROOT_PASSWORD: false
19+
MYSQL_ROOT_PASSWORD: ''
2020
MYSQL_DATABASE: root
2121
ports:
2222
- 3306/tcp
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
sudo systemctl start mysql.service
4949
mysql -e 'CREATE USER "drupal"@"127.0.0.1" IDENTIFIED BY "drupal";' -uroot
50-
mysql -e 'CREATE DATABASE drupal;' -uroot -proot
50+
mysql -e 'CREATE DATABASE drupal;' -uroot
5151
mysql -e 'GRANT ALL PRIVILEGES ON drupal . * TO "drupal"@"127.0.0.1";' -uroot
5252
5353
- name: Get composer cache directory

0 commit comments

Comments
 (0)