Skip to content

Commit 7deeefa

Browse files
committed
ci: update action versions
1 parent 358b63e commit 7deeefa

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/ci.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
env:
4141
PLATFORM: ${{ matrix.platform }}
4242
steps:
43-
- uses: actions/checkout@v2
43+
- uses: actions/checkout@v3
4444

4545
- name: Cache Docker layers
46-
uses: actions/cache@v2
46+
uses: actions/cache@v3
4747
with:
4848
path: tmp/build-cache
4949
key: ${{ runner.os }}-${{ matrix.platform }}-buildx-${{ github.sha }}
@@ -75,14 +75,14 @@ jobs:
7575
bundle exec rake gem:${PLATFORM}
7676
7777
- name: Upload binary gem
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v3
7979
with:
8080
name: gem-${{ matrix.platform }}
8181
path: test/rcd_test/pkg/*-*-*.gem
8282

8383
- if: matrix.platform == 'jruby'
8484
name: Upload source gem
85-
uses: actions/upload-artifact@v2
85+
uses: actions/upload-artifact@v3
8686
with:
8787
name: gem-ruby
8888
path: test/rcd_test/pkg/*-?.?.?.gem
@@ -101,7 +101,7 @@ jobs:
101101
102102
- if: contains(matrix.platform, 'x64-mingw')
103103
name: Upload static binary gem
104-
uses: actions/upload-artifact@v2
104+
uses: actions/upload-artifact@v3
105105
with:
106106
name: gem-${{ matrix.platform }}-static
107107
path: test/rcd_test/pkg/*-*-*.gem
@@ -144,13 +144,13 @@ jobs:
144144

145145
runs-on: ${{ matrix.os }}-latest
146146
steps:
147-
- uses: actions/checkout@v2
147+
- uses: actions/checkout@v3
148148
- uses: ruby/setup-ruby@v1
149149
with:
150150
ruby-version: ${{ matrix.ruby }}
151151
- run: ruby --version
152152
- name: Download gem-${{matrix.platform}}
153-
uses: actions/download-artifact@v2
153+
uses: actions/download-artifact@v3
154154
with:
155155
name: gem-${{ matrix.platform }}
156156
- name: Install gem-${{matrix.platform}}
@@ -188,13 +188,13 @@ jobs:
188188

189189
runs-on: ${{ matrix.os }}-latest
190190
steps:
191-
- uses: actions/checkout@v2
191+
- uses: actions/checkout@v3
192192
- uses: ruby/setup-ruby@v1
193193
with:
194194
ruby-version: ${{ matrix.ruby }}
195195
- run: ruby --version
196196
- name: Download gem-${{matrix.platform}}-static
197-
uses: actions/download-artifact@v2
197+
uses: actions/download-artifact@v3
198198
with:
199199
name: gem-${{ matrix.platform }}-static
200200
- name: Install gem-${{matrix.platform}}-static
@@ -230,9 +230,9 @@ jobs:
230230

231231
runs-on: ubuntu-latest
232232
steps:
233-
- uses: actions/checkout@v2
233+
- uses: actions/checkout@v3
234234
- name: Download gem-${{matrix.platform}}
235-
uses: actions/download-artifact@v2
235+
uses: actions/download-artifact@v3
236236
with:
237237
name: gem-${{ matrix.platform }}
238238
- name: Build image and Run tests

0 commit comments

Comments
 (0)