From 5601c8b6a1560944a3828c0203828295712df583 Mon Sep 17 00:00:00 2001 From: Art4 Date: Thu, 7 Nov 2024 13:38:43 +0000 Subject: [PATCH] Try mariadb 11.1 --- .github/workflows/php.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 28aba027d5..bf81a036c6 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -9,26 +9,26 @@ jobs: services: mariadb: - image: mariadb:latest + image: mariadb:11.1 env: MYSQL_ALLOW_EMPTY_PASSWORD: true MYSQL_DATABASE: test MYSQL_PASSWORD: test MYSQL_USER: test ports: - - 3306 + - 3306/tcp options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 redis: image: redis ports: - - 6379 + - 6379/tcp options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3 memcached: image: memcached ports: - - 11211 + - 11211/tcp strategy: fail-fast: false