Skip to content

Commit 7cf5482

Browse files
authored
add Go 1.21 and MySQL 8.1 to the build matrix (#1472)
* add Go 1.21 and MySQL 8.1 to the build matrix * bump shogo82148/actions-setup-mysql v1.21.0
1 parent e503d8d commit 7cf5482

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,14 @@ jobs:
3131
import os
3232
go = [
3333
# Keep the most recent production release at the top
34-
'1.20',
34+
'1.21',
3535
# Older production releases
36+
'1.20',
3637
'1.19',
3738
'1.18',
3839
]
3940
mysql = [
41+
'8.1',
4042
'8.0',
4143
'5.7',
4244
'5.6',
@@ -75,7 +77,7 @@ jobs:
7577
- uses: actions/setup-go@v4
7678
with:
7779
go-version: ${{ matrix.go }}
78-
- uses: shogo82148/actions-setup-mysql@v1.16.0
80+
- uses: shogo82148/actions-setup-mysql@v1.21.0
7981
with:
8082
mysql-version: ${{ matrix.mysql }}
8183
user: ${{ env.MYSQL_TEST_USER }}

0 commit comments

Comments
 (0)