From 16752270626769a8c3accf0801a51f6c622d4068 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Thu, 21 May 2026 12:03:02 +0200 Subject: [PATCH] Disable SSL for MariaDB --- .github/workflows/reusable-functional.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/reusable-functional.yml b/.github/workflows/reusable-functional.yml index ae313c8..27f8d07 100644 --- a/.github/workflows/reusable-functional.yml +++ b/.github/workflows/reusable-functional.yml @@ -115,6 +115,7 @@ jobs: my-cnf: | ${{ steps.mysql-config.outputs.auth-config || 'default_authentication_plugin=mysql_native_password' }} ${{ inputs.dbtype == 'mariadb' && '[client]' || '' }} + ${{ inputs.dbtype == 'mariadb' && 'ssl = OFF' || '' }} ${{ inputs.dbtype == 'mariadb' && 'disable-ssl-verify-server-cert' || '' }} - name: Remove system MySQL binary