From 88fae7fb21b10d5eb5fd2903772e1cc415742fc2 Mon Sep 17 00:00:00 2001 From: Luke Heath Date: Thu, 14 May 2026 17:23:56 -0500 Subject: [PATCH] Move MySQL 9 Go test coverage from per-PR to nightly cron (#45549) --- .github/workflows/test-go.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-go.yaml b/.github/workflows/test-go.yaml index 2fd9c19682..c3203e9f2c 100644 --- a/.github/workflows/test-go.yaml +++ b/.github/workflows/test-go.yaml @@ -72,7 +72,7 @@ jobs: strategy: matrix: suite: ["integration-core", "integration-enterprise", "integration-mdm", "fleetctl", "main", "mysql", "service", "vuln"] - mysql: ["mysql:8.0.44", "mysql:9.5.0"] + mysql: ["mysql:8.0.44"] uses: ./.github/workflows/test-go-suite.yaml with: suite: ${{ matrix.suite }} @@ -82,14 +82,14 @@ jobs: # ────────────────────────────────────────────────────────────────────────── # Extended MySQL coverage: only on the nightly cron schedule. - # Tests the same DB-dependent suites against older/intermediate versions. + # Tests the same DB-dependent suites against the other supported versions. # ────────────────────────────────────────────────────────────────────────── test-go-extended-mysql: if: github.event_name == 'schedule' strategy: matrix: suite: ["integration-core", "integration-enterprise", "integration-mdm", "fleetctl", "main", "mysql", "service", "vuln"] - mysql: ["mysql:8.0.42", "mysql:8.4.8"] + mysql: ["mysql:8.0.42", "mysql:8.4.8", "mysql:9.5.0"] uses: ./.github/workflows/test-go-suite.yaml with: suite: ${{ matrix.suite }}