From 23c0d7cf05371141474aa26cd674a71c3eb83ef1 Mon Sep 17 00:00:00 2001 From: enomotodev Date: Fri, 6 Jun 2025 11:10:23 +0900 Subject: [PATCH] test: update MySQL test matrix to use official images and add 9.0, 8.4 versions (#7476) * test: update MySQL test matrix to use official images and add 9.0, 8.4 versions * test: use major version tags for MySQL test matrix --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f59f2fae..e70d2bdd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,7 @@ jobs: mysql: strategy: matrix: - dbversion: ['mysql/mysql-server:latest', 'mysql:5.7'] + dbversion: ['mysql:9', 'mysql:8', 'mysql:5.7'] go: ['1.23', '1.24'] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }}