From 20fd26e7b5c825c0206deb447a741157b8df9069 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Fri, 25 Feb 2022 12:19:46 +0100 Subject: [PATCH] Unpin MariaDB Once the new 10.6.7 and 10.7.3 docker images are available we can unpin MariaDB in all our repos. Note that codechecker was NOT affected by the problems in previous versions... so I'm going to unpin it in advance. Fixes #150 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7d30ce8..3e130fe1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - 5432:5432 options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 mariadb: - image: mariadb:10.5 + image: mariadb:10 env: MYSQL_USER: 'root' MYSQL_ALLOW_EMPTY_PASSWORD: "true"