Skip to content

Commit 452bbae

Browse files
committed
use MySQL 8.0.26 to fix failing mysqli tests
1 parent 245dca6 commit 452bbae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ jobs:
613613
ref: ${{ matrix.branch.ref }}
614614
- name: Setup MySQL
615615
run: |
616-
choco install mysql -y --no-progress --params="/port:3307"
616+
choco install mysql --version 8.0.26 -y --no-progress --params="/port:3307"
617617
mysql.exe --port=3307 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'mysql_Pass11'; FLUSH PRIVILEGES;"
618618
mysql.exe --port=3307 --user=root --password="mysql_Pass11" -e "SELECT 1;"
619619
- name: Setup MSSQL

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
uses: actions/checkout@v2
160160
- name: Setup MySQL
161161
run: |
162-
choco install mysql -y --no-progress --params="/port:3307"
162+
choco install mysql --version 8.0.26 -y --no-progress --params="/port:3307"
163163
mysql.exe --port=3307 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'mysql_Pass11'; FLUSH PRIVILEGES;"
164164
mysql.exe --port=3307 --user=root --password="mysql_Pass11" -e "SELECT 1;"
165165
- name: Setup MSSQL

0 commit comments

Comments
 (0)