Skip to content

Commit

Permalink
Merge pull request #80 from procore-oss/jm-drop-ruby-27-support
Browse files Browse the repository at this point in the history
chore: drop support for ruby 2.7
  • Loading branch information
jmeridth authored Mar 19, 2024
2 parents 3b50256 + fbd6ac1 commit 7198c1b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ jobs:
test:
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
os: ['ubuntu-latest']
ruby: ['3.0', '3.1', '3.2', '3.3']
postgres: ['16-bullseye', '15-bullseye', '14-bullseye', '13-bullseye', '12-bullseye']
name: Ruby ${{ matrix.ruby }} - PostgreSQL ${{ matrix.postgres }}
# https://docs.github.com/en/actions/learn-github-actions/expressions#example
runs-on: ${{ matrix.ruby == '2.7' && 'ubuntu-20.04' || 'ubuntu-latest' }}
runs-on: ${{ matrix.os }}
services:
postgres:
image: postgres:${{ matrix.postgres }}
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Ruby versions that are currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| <=2.6 | :x: |
| 2.7 | :white_check_mark: |
| <=2.7 | :x: |
| 3.0 | :white_check_mark: |
| 3.1 | :white_check_mark: |
| 3.2 | :white_check_mark: |
| 3.3 | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
1 change: 1 addition & 0 deletions handcuffs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
spec.description = %q{Allows you to define a phase on Active Record migrations and provides rake tasks for running only migrations tagged with a certain phase}
spec.homepage = "https://github.com/procore-oss/handcuffs/"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new('>= 3.0')

# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
# delete this section to allow pushing this gem to any host.
Expand Down

0 comments on commit 7198c1b

Please sign in to comment.