1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-21 04:41:36 +02:00

CI: switch to Ruby 2.6

This commit is contained in:
XhmikosR
2020-01-13 15:09:17 +02:00
parent 9b71d9817d
commit 90fef3086d

View File

@@ -12,7 +12,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
node: [10, 12] node: [10, 12]
ruby: [2.4.x] ruby: [2.6]
steps: steps:
- name: Clone repository - name: Clone repository
@@ -23,7 +23,7 @@ jobs:
with: with:
node-version: ${{ matrix.node }} node-version: ${{ matrix.node }}
- name: Set up Ruby 2.4 - name: Set up Ruby
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: with:
ruby-version: ${{ matrix.ruby }} ruby-version: ${{ matrix.ruby }}
@@ -50,9 +50,6 @@ jobs:
- name: Set up Bundler - name: Set up Bundler
run: gem install bundler -v "~> 1.17" run: gem install bundler -v "~> 1.17"
- name: Update rubygems
run: gem update --system
- run: ruby --version - run: ruby --version
- run: gem --version - run: gem --version
- run: bundle --version - run: bundle --version