From f4ef84c6c17bb75c244facb2de4d02dfe74e5c09 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 the images are not yet available (as of Feb 25 2022), but I wanted to verify one little thing with the current versions. 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"