|
68 | 68 | run: | |
69 | 69 | bundle exec rake build |
70 | 70 | - name: Upload gem |
71 | | - uses: actions/upload-artifact@v3 |
| 71 | + uses: actions/upload-artifact@v4 |
72 | 72 | with: |
73 | 73 | name: gem-${{ steps.set-metadata.outputs.GEM_VERSION }}-ruby |
74 | 74 | path: pkg |
@@ -135,12 +135,12 @@ jobs: |
135 | 135 | run: | |
136 | 136 | bundle exec rake binary |
137 | 137 | - name: Upload V8 |
138 | | - uses: actions/upload-artifact@v3 |
| 138 | + uses: actions/upload-artifact@v4 |
139 | 139 | with: |
140 | 140 | name: v8-${{ steps.set-metadata.outputs.LIBV8_VERSION }}-${{ steps.set-metadata.outputs.GEM_PLATFORM }} |
141 | 141 | path: vendor |
142 | 142 | - name: Upload gem |
143 | | - uses: actions/upload-artifact@v3 |
| 143 | + uses: actions/upload-artifact@v4 |
144 | 144 | with: |
145 | 145 | name: gem-${{ steps.set-metadata.outputs.GEM_VERSION }}-${{ steps.set-metadata.outputs.GEM_PLATFORM }} |
146 | 146 | path: pkg |
@@ -274,12 +274,12 @@ jobs: |
274 | 274 | run: | |
275 | 275 | docker exec -w "${PWD}" ${{ steps.container.outputs.id }} bundle exec rake binary[${{ steps.platform.outputs.ruby_target_platform }}] |
276 | 276 | - name: Upload V8 |
277 | | - uses: actions/upload-artifact@v3 |
| 277 | + uses: actions/upload-artifact@v4 |
278 | 278 | with: |
279 | 279 | name: v8-${{ steps.set-metadata.outputs.LIBV8_VERSION }}-${{ steps.platform.outputs.ruby_target_platform }} |
280 | 280 | path: vendor |
281 | 281 | - name: Upload gem |
282 | | - uses: actions/upload-artifact@v3 |
| 282 | + uses: actions/upload-artifact@v4 |
283 | 283 | with: |
284 | 284 | name: gem-${{ steps.set-metadata.outputs.GEM_VERSION }}-${{ steps.platform.outputs.ruby_target_platform }} |
285 | 285 | path: pkg |
@@ -327,7 +327,7 @@ jobs: |
327 | 327 | ruby -e 'puts Gem.platforms.last.to_s' | tee gem_platform |
328 | 328 | echo "::set-output name=GEM_PLATFORM::$(cat gem_platform)" |
329 | 329 | - name: Download a single artifact |
330 | | - uses: actions/download-artifact@v3 |
| 330 | + uses: actions/download-artifact@v4 |
331 | 331 | with: |
332 | 332 | name: gem-${{ needs.build-ruby.outputs.GEM_VERSION }}-ruby |
333 | 333 | path: pkg |
@@ -360,7 +360,7 @@ jobs: |
360 | 360 | ruby -e 'puts Gem.platforms.last.to_s.gsub(/-darwin-?\d+/, "-darwin")' | tee gem_platform |
361 | 361 | echo "::set-output name=GEM_PLATFORM::$(cat gem_platform)" |
362 | 362 | - name: Download a single artifact |
363 | | - uses: actions/download-artifact@v3 |
| 363 | + uses: actions/download-artifact@v4 |
364 | 364 | with: |
365 | 365 | name: gem-${{ needs.build-darwin.outputs.GEM_VERSION }}-${{ steps.set-metadata.outputs.GEM_PLATFORM }} |
366 | 366 | path: pkg |
@@ -440,7 +440,7 @@ jobs: |
440 | 440 | docker exec -w "${PWD}" ${{ steps.container.outputs.id }} ruby -e 'puts Gem::Platform.local.tap { |p| RUBY_PLATFORM =~ /musl/ && p.version.nil? and p.instance_eval { @version = "musl" } }.to_s' | tee gem_platform |
441 | 441 | echo "::set-output name=GEM_PLATFORM::$(cat gem_platform)" |
442 | 442 | - name: Download a single artifact |
443 | | - uses: actions/download-artifact@v3 |
| 443 | + uses: actions/download-artifact@v4 |
444 | 444 | with: |
445 | 445 | name: gem-${{ needs.build-linux.outputs.GEM_VERSION }}-${{ steps.set-metadata.outputs.GEM_PLATFORM }} |
446 | 446 | path: pkg |
|
0 commit comments