Skip to content

Commit

Permalink
CI: Update Go, MySQL and Ubuntu versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Nov 27, 2024
1 parent 611e959 commit ff0466f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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 ./...

0 comments on commit ff0466f

Please sign in to comment.