Skip to content

Commit c985c86

Browse files
authored
Merge pull request #103 from samsonjs/ruby-4
Add Ruby 4.0.0 to test matrix
2 parents 7ca250a + 55f3861 commit c985c86

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v4
99
- uses: ruby/setup-ruby@v1
1010
with:
11-
ruby-version: 3.4.4
11+
ruby-version: 4.0.0
1212
- name: Install dependencies
1313
run: bundle install --jobs 4 --retry 3
1414
- name: Run Danger
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
ruby-version: [3.4.4, 3.3.8, 3.2.8, 3.1.7]
25-
grape-version: ['~> 2.3.0', '~> 3.0']
24+
ruby-version: [4.0.0, 3.4.8, 3.3.10, 3.2.9]
25+
grape-version: ['~> 3.0.0', '~> 2.3.0']
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828
- uses: ruby/setup-ruby@v1
2929
with:
3030
ruby-version: ${{ matrix.ruby-version }}

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
22

33
gemspec
44

5-
case version = ENV['GRAPE_VERSION'] || '~> 2.3.0'
5+
case version = ENV['GRAPE_VERSION'] || '~> 3.0.0'
66
when 'HEAD'
77
gem 'grape', github: 'intridea/grape'
88
else

0 commit comments

Comments
 (0)