|
42 | 42 | runs-on: ubuntu-20.04
|
43 | 43 | container: ruby:2.7
|
44 | 44 | steps:
|
| 45 | + - name: Update Rubygems and Bundler |
| 46 | + run: | |
| 47 | + gem update --system 3.3.26 |
| 48 | + gem install bundler -v '~> 2.3.26' |
45 | 49 | - name: Checkout
|
46 | 50 | uses: actions/checkout@v2
|
47 | 51 | - name: Bundle
|
@@ -231,6 +235,10 @@ jobs:
|
231 | 235 | if: ${{ matrix.libc == 'gnu' && matrix.platform != 'amd64' }}
|
232 | 236 | run: |
|
233 | 237 | docker exec -w "${PWD}" ${{ steps.container.outputs.id }} apt-get install -y binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
|
| 238 | + - name: Update Rubygems and Bundler |
| 239 | + run: | |
| 240 | + docker exec -w "${PWD}" ${{ steps.container.outputs.id }} gem update --system 3.3.26 |
| 241 | + docker exec -w "${PWD}" ${{ steps.container.outputs.id }} gem install bundler -v '~> 2.3.26' |
234 | 242 | - name: Checkout
|
235 | 243 | uses: actions/checkout@v2
|
236 | 244 | - name: Bundle
|
@@ -318,6 +326,10 @@ jobs:
|
318 | 326 | - name: Install Alpine system dependencies
|
319 | 327 | if: ${{ matrix.container.libc == 'musl' }}
|
320 | 328 | run: apk add --no-cache build-base linux-headers bash python3 git curl tar
|
| 329 | + - name: Update Rubygems and Bundler |
| 330 | + run: | |
| 331 | + gem update --system 3.3.26 |
| 332 | + gem install bundler -v '~> 2.3.26' |
321 | 333 | - name: Set metadata
|
322 | 334 | id: set-metadata
|
323 | 335 | run: |
|
@@ -435,6 +447,10 @@ jobs:
|
435 | 447 | - name: Install Alpine system dependencies
|
436 | 448 | if: ${{ matrix.libc == 'musl' }}
|
437 | 449 | run: docker exec -w "${PWD}" ${{ steps.container.outputs.id }} apk add --no-cache build-base git libstdc++
|
| 450 | + - name: Update Rubygems and Bundler |
| 451 | + run: | |
| 452 | + docker exec -w "${PWD}" ${{ steps.container.outputs.id }} gem update --system 3.3.26 |
| 453 | + docker exec -w "${PWD}" ${{ steps.container.outputs.id }} gem install bundler -v '~> 2.3.26' |
438 | 454 | - name: Set metadata
|
439 | 455 | id: set-metadata
|
440 | 456 | run: |
|
|
0 commit comments