Skip to content

Commit 306bbef

Browse files
committed
fix: support Ruby 2.6
1 parent c810ddd commit 306bbef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ruby.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
RUBY_IMAGE: ${{ matrix.ruby }}
1818
name: Ruby ${{ matrix.ruby }}
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
- name: Set up Ruby
2222
uses: ruby/setup-ruby@v1
2323
with:

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
ruby:
3-
image: ruby:${RUBY_IMAGE:-3.2}-bullseye
3+
image: ruby:${RUBY_IMAGE:-2.6}-bullseye
44
environment:
55
HISTFILE: /app/.bash_history
66
BUNDLE_PATH: /bundle

graphql-connections.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ Gem::Specification.new do |spec|
4343
spec.add_development_dependency "rake", "~> 13.0"
4444
spec.add_development_dependency "rspec-rails", "~> 6.0"
4545
spec.add_development_dependency "standard", "~> 1.1"
46-
spec.add_development_dependency "test-prof", "~> 1.0"
46+
spec.add_development_dependency "test-prof", "~> 1.0.0"
4747
end
4848
# rubocop:enable Metrics/BlockLength

0 commit comments

Comments
 (0)