Skip to content

Commit

Permalink
Merge pull request #274 from bastelfreak/ruby
Browse files Browse the repository at this point in the history
Drop Ruby 2.5/2.6
  • Loading branch information
bastelfreak authored Jun 21, 2023
2 parents bcb4689 + 7e6729b commit a0de8ec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
if: github.repository == 'voxpupuli/facterdb'
steps:
- uses: actions/checkout@v3
- name: Install Ruby 3.0
- name: Install Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
ruby-version: '3.2'
env:
BUNDLE_WITHOUT: release
- name: Build gem
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Test

on:
- pull_request
- push
pull_request: {}
push:
branches:
- master

jobs:
test:
Expand All @@ -11,8 +13,6 @@ jobs:
fail-fast: false
matrix:
ruby:
- '2.5'
- '2.6'
- '2.7'
- '3.0'
- '3.1'
Expand Down
2 changes: 1 addition & 1 deletion facterdb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }

# we have that configured in our CI file
s.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
s.required_ruby_version = Gem::Requirement.new('>= 2.7.0')

s.add_development_dependency 'coveralls'
s.add_development_dependency 'rake'
Expand Down

0 comments on commit a0de8ec

Please sign in to comment.