Skip to content

Commit 8edd860

Browse files
committedNov 12, 2019
Fixed build failure of the latest GitHub Actions
1 parent b6e2a66 commit 8edd860

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎.github/workflows/macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
runs-on: macos-latest
88
strategy:
99
matrix:
10-
ruby: [ '2.6.x', '2.5.x', '2.4.x', '2.3.x' ]
10+
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Set up Ruby
1414
uses: actions/setup-ruby@v1
1515
with:
16-
version: ${{ matrix.ruby }}
16+
ruby-version: ${{ matrix.ruby }}
1717
- name: Install dependencies
1818
run: gem install minitest
1919
- name: Run test

‎.github/workflows/ubuntu-rvm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
ruby: [ 'jruby-head', 'jruby-9.2.8.0', 'ruby-head', '2.2.10' ]
10+
ruby: [ 'jruby-head', 'jruby-9.2.9.0', 'ruby-head', '2.3.8', '2.2.10' ]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Set up RVM

‎.github/workflows/ubuntu.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
ruby: [ '2.6.x', '2.5.x', '2.4.x', '2.3.x' ]
10+
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Set up Ruby
1414
uses: actions/setup-ruby@v1
1515
with:
16-
version: ${{ matrix.ruby }}
16+
ruby-version: ${{ matrix.ruby }}
1717
- name: Install dependencies
1818
run: gem install minitest
1919
- name: Run test

‎.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Ruby
1414
uses: actions/setup-ruby@v1
1515
with:
16-
version: ${{ matrix.ruby }}
16+
ruby-version: ${{ matrix.ruby }}
1717
- name: Install dependencies
1818
run: gem install minitest
1919
- name: Run test

0 commit comments

Comments
 (0)