Skip to content

Commit 740dd17

Browse files
committed
ci: update Go and MySQL versions
1 parent 33b7747 commit 740dd17

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

.github/workflows/test.yml

+8-10
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,20 @@ jobs:
3131
import os
3232
go = [
3333
# Keep the most recent production release at the top
34-
'1.21',
34+
'1.22',
3535
# Older production releases
36+
'1.21',
3637
'1.20',
37-
'1.19',
38-
'1.18',
3938
]
4039
mysql = [
41-
'8.1',
4240
'8.0',
41+
'8.3',
4342
'5.7',
44-
'5.6',
45-
'mariadb-10.11',
46-
'mariadb-10.6',
43+
'mariadb-11.3',
44+
'mariadb-11.1',
45+
'mariadb-10.11', # LTS
46+
'mariadb-10.6', # LTS
4747
'mariadb-10.5',
48-
'mariadb-10.4',
49-
'mariadb-10.3',
5048
]
5149
5250
includes = []
@@ -64,7 +62,7 @@ jobs:
6462
}
6563
output = json.dumps(matrix, separators=(',', ':'))
6664
with open(os.environ["GITHUB_OUTPUT"], 'a', encoding="utf-8") as f:
67-
f.write('matrix={0}\n'.format(output))
65+
print(f"matrix={output}", file=f)
6866
shell: python
6967
test:
7068
needs: list

0 commit comments

Comments
 (0)