Skip to content

Commit

Permalink
fix: support Ruby 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox committed Nov 3, 2023
1 parent c810ddd commit 987b3db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2' ]
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
env:
RUBY_IMAGE: ${{ matrix.ruby }}
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
ruby:
image: ruby:${RUBY_IMAGE:-3.2}-bullseye
image: ruby:${RUBY_IMAGE:-2.6}-bullseye
environment:
HISTFILE: /app/.bash_history
BUNDLE_PATH: /bundle
Expand Down
2 changes: 1 addition & 1 deletion graphql-connections.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec-rails", "~> 6.0"
spec.add_development_dependency "standard", "~> 1.1"
spec.add_development_dependency "test-prof", "~> 1.0"
spec.add_development_dependency "test-prof", "~> 1.0.0"
end
# rubocop:enable Metrics/BlockLength

0 comments on commit 987b3db

Please sign in to comment.