Skip to content

Commit

Permalink
Merge pull request #69 from github/update-ci-jobs
Browse files Browse the repository at this point in the history
[Chore]: Update workflow to run on ruby 3.4, and drop EOL ruby versions
  • Loading branch information
vcsjones authored Jan 6, 2025
2 parents a322517 + be0c032 commit e563174
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.7', '3.0', '3.1', '3.2', '3.3' ]
ruby: [ '3.1', '3.2', '3.3', '3.4' ]

steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@b256bd96bb4867e7d23e92e087d9bb697270b725
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ssh_data (1.3.0)
ssh_data (2.0.0)
base64 (~> 0.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh_data/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SSHData
VERSION = "1.3.0"
VERSION = "2.0.0"
end
2 changes: 1 addition & 1 deletion ssh_data.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/github/ssh_data"
s.authors = ["mastahyeti"]
s.email = "opensource+ssh_data@github.com"
s.required_ruby_version = ">= 2.3"
s.required_ruby_version = ">= 3.1"
s.files = Dir["./lib/**/*.rb"] + ["./LICENSE.md"]

s.add_dependency "base64", "~> 0.1"
Expand Down

0 comments on commit e563174

Please sign in to comment.