From 01269865a7cf0283b5b8c67bc938716fab8152c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Wed, 27 Nov 2024 13:42:32 +0100 Subject: [PATCH] CI: Update Go, MySQL and Ubuntu versions (#954) * CI: Update Go, MySQL and Ubuntu versions * Trigger Build --------- Co-authored-by: lance6716 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6036731df..ef678faae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,8 +5,8 @@ jobs: test: strategy: matrix: - go: [ "1.22", "1.21" ] - os: [ ubuntu-22.04, ubuntu-20.04 ] + go: [ "1.23", "1.22" ] + os: [ ubuntu-24.04, ubuntu-22.04, ubuntu-20.04 ] name: Tests Go ${{ matrix.go }} on ${{ matrix.os }} # This name is used in main branch protection rules runs-on: ${{ matrix.os }} @@ -51,8 +51,8 @@ jobs: strategy: matrix: mysql_version: - - 8.0.37 - - 8.4.0 + - 8.0.40 + - 8.4.3 name: Tests with MySQL ${{ matrix.mysql_version }} runs-on: ubuntu-latest services: @@ -78,7 +78,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" - name: Run tests run: | # separate test to avoid RESET MASTER conflict @@ -113,7 +113,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" - name: Build on ${{ matrix.os }}/${{ matrix.arch }} run: GOARCH=${{ matrix.arch }} GOOS=${{ matrix.os }} go build ./...