From 90c529240e4b47fa081d418203e48a6b710aa560 Mon Sep 17 00:00:00 2001 From: Nemanja Glumac <31325167+nemanjaglumac@users.noreply.github.com> Date: Mon, 23 Oct 2023 17:45:09 +0200 Subject: [PATCH] Run MySQL v8.0 for driver tests (#34943) EOL v5.7 was October 21, 2203. The image changed from the legacy `circleci/` image to `cimg/` https://circleci.com/developer/images/image/cimg/mysql --- .github/workflows/drivers.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/drivers.yml b/.github/workflows/drivers.yml index 30537fa2d92..df74ea8a487 100644 --- a/.github/workflows/drivers.yml +++ b/.github/workflows/drivers.yml @@ -325,7 +325,7 @@ jobs: junit-name: 'be-tests-mongo-latest-ee' test-args: ":exclude-tags '[:mb/once]'" - be-tests-mysql-5-7-ee: + be-tests-mysql-8-0-ee: needs: files-changed if: github.event.pull_request.draft == false && needs.files-changed.outputs.backend_all == 'true' runs-on: ubuntu-22.04 @@ -341,15 +341,15 @@ jobs: MB_MYSQL_TEST_USER: root services: mysql: - image: circleci/mysql:5.7.23 + image: cimg/mysql:8.0 ports: - "3306:3306" steps: - uses: actions/checkout@v3 - - name: Test MySQL driver (5.7) + - name: Test MySQL driver (8.0) uses: ./.github/actions/test-driver with: - junit-name: 'be-tests-mysql-5-7-ee' + junit-name: 'be-tests-mysql-8-0-ee' be-tests-mysql-latest-ee: needs: files-changed -- GitLab