From a043b7faa39685943482c4c27f88453e755181d7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 04:52:58 +0000 Subject: [PATCH] chore(deps): update mysql docker tag to v9 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bba2ca0..1d03656 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,7 +64,7 @@ jobs: services: mysql57: - image: mysql:5.7 + image: mysql:9.2 env: MYSQL_DATABASE: nextras_dbal_test MYSQL_ROOT_PASSWORD: root @@ -77,7 +77,7 @@ jobs: --health-timeout 5s --health-retries 10 mysql80: - image: mysql:8.0 + image: mysql:9.2 ports: - 3307:3306 options: --health-cmd="mysqladmin ping -ppass" --health-interval=10s --health-timeout=5s --health-retries=5 -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=nextras_dbal_test --entrypoint sh mysql:8 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"