From bc2f3c0bea72d132055e2f0a61ff12739a781394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Mon, 16 Dec 2019 22:22:06 +0100 Subject: [PATCH] specify host port --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index ea31fde..e6dd2a4 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -4,7 +4,7 @@ on: [push] jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest env: MYSQL_DATABASE: monarc_common @@ -18,7 +18,7 @@ jobs: - name: Start MariaDB and create databases uses: getong/mariadb-action@v1.1 with: - mariadb version: '10.4.10' # Optional, default value is "latest". The version of the MariaDB + host port: 3800 mysql database: $MYSQL_DATABASE # Optional, default value is "test". The specified database which will be create mysql root password: $MYSQL_ROOT_PASSWORD # Required if "mysql user" is empty, default is empty. The root superuser password mysql user: $MYSQL_USER # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too