22
22
outputs :
23
23
dirs : ${{ steps.make-list.outputs.dirs }}
24
24
25
- client_go_0_27 :
26
- needs : prepare
27
- strategy :
28
- fail-fast : false
29
- # A matrix can produce no more than 256 elements,
30
- # so testing too many k8s versions is unfeasible.
31
- matrix :
32
- example_program : ${{ fromJson(needs.prepare.outputs.dirs) }}
33
- k8s_cluster_ver :
34
- - " 1.27.13"
35
- - " 1.28.9"
36
- - " 1.29.4"
37
- - " 1.30.0"
38
- uses : ./.github/workflows/test-one.yml
39
- with :
40
- example_program : ${{ matrix.example_program }}
41
- k8s_cluster_ver : ${{ matrix.k8s_cluster_ver }}
42
- k8s_package_ver : " 0.27.14"
43
-
44
25
client_go_0_28 :
45
26
needs : prepare
46
27
strategy :
@@ -50,15 +31,15 @@ jobs:
50
31
matrix :
51
32
example_program : ${{ fromJson(needs.prepare.outputs.dirs) }}
52
33
k8s_cluster_ver :
53
- - " 1.27.13"
54
34
- " 1.28.9"
55
- - " 1.29.4"
56
- - " 1.30.0"
35
+ - " 1.29.12"
36
+ - " 1.30.8"
37
+ - " 1.31.4"
57
38
uses : ./.github/workflows/test-one.yml
58
39
with :
59
40
example_program : ${{ matrix.example_program }}
60
41
k8s_cluster_ver : ${{ matrix.k8s_cluster_ver }}
61
- k8s_package_ver : " 0.28.10 "
42
+ k8s_package_ver : " 0.28.14 "
62
43
63
44
client_go_0_29 :
64
45
needs : prepare
@@ -69,15 +50,15 @@ jobs:
69
50
matrix :
70
51
example_program : ${{ fromJson(needs.prepare.outputs.dirs) }}
71
52
k8s_cluster_ver :
72
- - " 1.27.13"
73
53
- " 1.28.9"
74
- - " 1.29.4"
75
- - " 1.30.0"
54
+ - " 1.29.12"
55
+ - " 1.30.8"
56
+ - " 1.31.4"
76
57
uses : ./.github/workflows/test-one.yml
77
58
with :
78
59
example_program : ${{ matrix.example_program }}
79
60
k8s_cluster_ver : ${{ matrix.k8s_cluster_ver }}
80
- k8s_package_ver : " 0.29.5 "
61
+ k8s_package_ver : " 0.29.12 "
81
62
82
63
client_go_0_30 :
83
64
needs : prepare
@@ -88,12 +69,31 @@ jobs:
88
69
matrix :
89
70
example_program : ${{ fromJson(needs.prepare.outputs.dirs) }}
90
71
k8s_cluster_ver :
91
- - " 1.27.13"
92
72
- " 1.28.9"
93
- - " 1.29.4"
94
- - " 1.30.0"
73
+ - " 1.29.12"
74
+ - " 1.30.8"
75
+ - " 1.31.4"
95
76
uses : ./.github/workflows/test-one.yml
96
77
with :
97
78
example_program : ${{ matrix.example_program }}
98
79
k8s_cluster_ver : ${{ matrix.k8s_cluster_ver }}
99
- k8s_package_ver : " 0.30.1"
80
+ k8s_package_ver : " 0.30.8"
81
+
82
+ client_go_0_31 :
83
+ needs : prepare
84
+ strategy :
85
+ fail-fast : false
86
+ # A matrix can produce no more than 256 elements,
87
+ # so testing too many k8s versions is unfeasible.
88
+ matrix :
89
+ example_program : ${{ fromJson(needs.prepare.outputs.dirs) }}
90
+ k8s_cluster_ver :
91
+ - " 1.28.9"
92
+ - " 1.29.12"
93
+ - " 1.30.8"
94
+ - " 1.31.4"
95
+ uses : ./.github/workflows/test-one.yml
96
+ with :
97
+ example_program : ${{ matrix.example_program }}
98
+ k8s_cluster_ver : ${{ matrix.k8s_cluster_ver }}
99
+ k8s_package_ver : " 0.31.4"
0 commit comments