@@ -25,16 +25,13 @@ jobs:
25
25
lint :
26
26
runs-on : ubuntu-20.04
27
27
if : ${{ github.event_name == 'pull_request' }}
28
- strategy :
29
- matrix :
30
- ruby-version : ['3.2', '3.3']
31
28
steps :
32
29
- uses : actions/checkout@v4
33
30
with :
34
31
fetch-depth : 0
35
32
- uses : ruby/setup-ruby@v1
36
33
with :
37
- ruby-version : ${{ matrix.ruby }}
34
+ ruby-version : " 3.3 "
38
35
bundler-cache : true
39
36
- run : ./bin/setup
40
37
- run : bundle exec rake check:type
@@ -76,14 +73,11 @@ jobs:
76
73
runs-on : ubuntu-20.04
77
74
outputs :
78
75
entries : ${{ steps.set-matrix.outputs.entries }}
79
- strategy :
80
- matrix :
81
- ruby-version : ['3.2', '3.3']
82
76
steps :
83
77
- uses : actions/checkout@v4
84
78
- uses : ruby/setup-ruby@v1
85
79
with :
86
- ruby-version : ${{ matrix.ruby-version}}
80
+ ruby-version : " 3.3 "
87
81
bundler-cache : true
88
82
- run : ./bin/setup
89
83
- run : rake ci:pin_build_manifest
104
98
fail-fast : false
105
99
matrix :
106
100
entry : ${{ fromJson(needs.build-rake-task-matrix.outputs.entries) }}
107
- ruby-version : ['3.2', '3.3']
108
101
needs : [build-rake-task-matrix]
109
102
runs-on : ubuntu-20.04
110
103
steps :
@@ -150,7 +143,7 @@ jobs:
150
143
- uses : ruby/setup-ruby@v1
151
144
if : ${{ matrix.entry.test != '' }}
152
145
with :
153
- ruby-version : ${{ matrix.ruby-version }}
146
+ ruby-version : " 3.3 "
154
147
bundler-cache : false
155
148
- name : rake ${{ matrix.entry.test }}
156
149
run : |
@@ -167,9 +160,6 @@ jobs:
167
160
needs : [rake-tasks]
168
161
runs-on : ubuntu-20.04
169
162
if : ${{ startsWith(github.ref, 'refs/tags/') || inputs.publish }}
170
- strategy :
171
- matrix :
172
- ruby-version : ['3.2', '3.3']
173
163
steps :
174
164
- uses : actions/checkout@v4
175
165
- uses : actions/download-artifact@v4
@@ -184,7 +174,7 @@ jobs:
184
174
registry-url : https://registry.npmjs.org/
185
175
- uses : ruby/setup-ruby@v1
186
176
with :
187
- ruby-version : ${{ matrix.ruby-version }}
177
+ ruby-version : " 3.3 "
188
178
bundler-cache : true
189
179
- run : ./bin/setup
190
180
- run : echo "PREREL_NAME=${{ inputs.prerel_name }}" >> $GITHUB_ENV
0 commit comments