Skip to content

Commit 1016c6f

Browse files
committed
fix: drop 2.6 support
1 parent 306bbef commit 1016c6f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ruby.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2' ]
15+
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
1616
env:
1717
RUBY_IMAGE: ${{ matrix.ruby }}
1818
name: Ruby ${{ matrix.ruby }}

.standard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby_version: 2.6
1+
ruby_version: 2.7

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:-2.6}-bullseye
3+
image: ruby:${RUBY_IMAGE:-2.7}-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
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
2828
spec.bindir = "exe"
2929
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
3030
spec.require_paths = ["lib"]
31-
spec.required_ruby_version = "> 2.5"
31+
spec.required_ruby_version = "> 2.6"
3232

3333
spec.add_runtime_dependency "activerecord", ">= 5"
3434
spec.add_runtime_dependency "graphql", [">= 1.10", "< 3.0"]

0 commit comments

Comments
 (0)