File tree 1 file changed +8
-10
lines changed
1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -31,22 +31,20 @@ jobs:
31
31
import os
32
32
go = [
33
33
# Keep the most recent production release at the top
34
- '1.21 ',
34
+ '1.22 ',
35
35
# Older production releases
36
+ '1.21',
36
37
'1.20',
37
- '1.19',
38
- '1.18',
39
38
]
40
39
mysql = [
41
- '8.1',
42
40
'8.0',
41
+ '8.3',
43
42
'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
47
47
'mariadb-10.5',
48
- 'mariadb-10.4',
49
- 'mariadb-10.3',
50
48
]
51
49
52
50
includes = []
64
62
}
65
63
output = json.dumps(matrix, separators=(',', ':'))
66
64
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 )
68
66
shell : python
69
67
test :
70
68
needs : list
You can’t perform that action at this time.
0 commit comments