Fixed MySQL version number

The 8.0 was to short to be detected as newer than 8.0.0. We need to specify the bugfix release to get proper results
This commit is contained in:
Jan Böhmer 2024-06-10 23:46:33 +02:00
parent be97ea08a2
commit 0c1c46c045

View file

@ -31,7 +31,7 @@ jobs:
steps:
- name: Set Database env for MySQL
run: echo "DATABASE_URL=mysql://root:root@127.0.0.1:3306/partdb?serverVersion=8.0" >> $GITHUB_ENV
run: echo "DATABASE_URL=mysql://root:root@127.0.0.1:3306/partdb?serverVersion=8.0.35" >> $GITHUB_ENV
if: matrix.db-type == 'mysql'
- name: Set Database env for SQLite