Skip to content

Commit

Permalink
Fixed build failure of the latest GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Nov 12, 2019
1 parent b6e2a66 commit 8edd860
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
ruby: [ '2.6.x', '2.5.x', '2.4.x', '2.3.x' ]
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
version: ${{ matrix.ruby }}
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: gem install minitest
- name: Run test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-rvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ 'jruby-head', 'jruby-9.2.8.0', 'ruby-head', '2.2.10' ]
ruby: [ 'jruby-head', 'jruby-9.2.9.0', 'ruby-head', '2.3.8', '2.2.10' ]
steps:
- uses: actions/checkout@master
- name: Set up RVM
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.6.x', '2.5.x', '2.4.x', '2.3.x' ]
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
version: ${{ matrix.ruby }}
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: gem install minitest
- name: Run test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
version: ${{ matrix.ruby }}
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: gem install minitest
- name: Run test
Expand Down

0 comments on commit 8edd860

Please sign in to comment.