Skip to content

Commit

Permalink
Support Ruby 3.2 and drop support of Ruby 2.7
Browse files Browse the repository at this point in the history
Ruby 2.7 is no longer maintained
  • Loading branch information
yuya-takeyama committed Nov 3, 2023
1 parent 36c9668 commit 07e74c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-gem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
ruby-version: '3.2'
bundler: latest
bundler-cache: true
- name: Setup credentials
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
- ubuntu-latest
- macos-latest
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.1-alpine
FROM ruby:3.2-alpine

COPY . /app
WORKDIR /app
Expand Down

0 comments on commit 07e74c6

Please sign in to comment.