@@ -40,10 +40,10 @@ jobs:
40
40
env :
41
41
PLATFORM : ${{ matrix.platform }}
42
42
steps :
43
- - uses : actions/checkout@v2
43
+ - uses : actions/checkout@v3
44
44
45
45
- name : Cache Docker layers
46
- uses : actions/cache@v2
46
+ uses : actions/cache@v3
47
47
with :
48
48
path : tmp/build-cache
49
49
key : ${{ runner.os }}-${{ matrix.platform }}-buildx-${{ github.sha }}
@@ -75,14 +75,14 @@ jobs:
75
75
bundle exec rake gem:${PLATFORM}
76
76
77
77
- name : Upload binary gem
78
- uses : actions/upload-artifact@v2
78
+ uses : actions/upload-artifact@v3
79
79
with :
80
80
name : gem-${{ matrix.platform }}
81
81
path : test/rcd_test/pkg/*-*-*.gem
82
82
83
83
- if : matrix.platform == 'jruby'
84
84
name : Upload source gem
85
- uses : actions/upload-artifact@v2
85
+ uses : actions/upload-artifact@v3
86
86
with :
87
87
name : gem-ruby
88
88
path : test/rcd_test/pkg/*-?.?.?.gem
@@ -101,7 +101,7 @@ jobs:
101
101
102
102
- if : contains(matrix.platform, 'x64-mingw')
103
103
name : Upload static binary gem
104
- uses : actions/upload-artifact@v2
104
+ uses : actions/upload-artifact@v3
105
105
with :
106
106
name : gem-${{ matrix.platform }}-static
107
107
path : test/rcd_test/pkg/*-*-*.gem
@@ -144,13 +144,13 @@ jobs:
144
144
145
145
runs-on : ${{ matrix.os }}-latest
146
146
steps :
147
- - uses : actions/checkout@v2
147
+ - uses : actions/checkout@v3
148
148
- uses : ruby/setup-ruby@v1
149
149
with :
150
150
ruby-version : ${{ matrix.ruby }}
151
151
- run : ruby --version
152
152
- name : Download gem-${{matrix.platform}}
153
- uses : actions/download-artifact@v2
153
+ uses : actions/download-artifact@v3
154
154
with :
155
155
name : gem-${{ matrix.platform }}
156
156
- name : Install gem-${{matrix.platform}}
@@ -188,13 +188,13 @@ jobs:
188
188
189
189
runs-on : ${{ matrix.os }}-latest
190
190
steps :
191
- - uses : actions/checkout@v2
191
+ - uses : actions/checkout@v3
192
192
- uses : ruby/setup-ruby@v1
193
193
with :
194
194
ruby-version : ${{ matrix.ruby }}
195
195
- run : ruby --version
196
196
- name : Download gem-${{matrix.platform}}-static
197
- uses : actions/download-artifact@v2
197
+ uses : actions/download-artifact@v3
198
198
with :
199
199
name : gem-${{ matrix.platform }}-static
200
200
- name : Install gem-${{matrix.platform}}-static
@@ -230,9 +230,9 @@ jobs:
230
230
231
231
runs-on : ubuntu-latest
232
232
steps :
233
- - uses : actions/checkout@v2
233
+ - uses : actions/checkout@v3
234
234
- name : Download gem-${{matrix.platform}}
235
- uses : actions/download-artifact@v2
235
+ uses : actions/download-artifact@v3
236
236
with :
237
237
name : gem-${{ matrix.platform }}
238
238
- name : Build image and Run tests
0 commit comments