Skip to content

Commit

Permalink
Fix: Use root as password
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jan 26, 2024
1 parent d8af8d5 commit 4de8a74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env.testing
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ APP_KEY=base64:SjHKdOBqP+0GzrIcyMVUkB5lJ/kPml3OuRGaLkI2i6g=

DB_DATABASE=testing
DB_HOST=127.0.0.1
DB_PASSWORD=password
DB_PASSWORD=root
DB_PORT=3306
DB_USERNAME=root
6 changes: 3 additions & 3 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
env:
MYSQL_DATABASE: "testing"
MYSQL_ROOT_HOST: "%"
MYSQL_ROOT_PASSWORD: "password"
MYSQL_ROOT_PASSWORD: "root"

image: "mysql/mysql-server:8.0"

Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
env:
MYSQL_DATABASE: "testing"
MYSQL_ROOT_HOST: "%"
MYSQL_ROOT_PASSWORD: "password"
MYSQL_ROOT_PASSWORD: "root"

image: "mysql/mysql-server:8.0"

Expand Down Expand Up @@ -500,7 +500,7 @@ jobs:
env:
MYSQL_DATABASE: "testing"
MYSQL_ROOT_HOST: "%"
MYSQL_ROOT_PASSWORD: "password"
MYSQL_ROOT_PASSWORD: "root"

image: "mysql/mysql-server:8.0"

Expand Down

0 comments on commit 4de8a74

Please sign in to comment.