Skip to content

Commit

Permalink
Update to Ruby 3.4.1 (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
duffn authored Jan 27, 2025
1 parent 2ab4467 commit b9c8a5f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundler-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
fail-fast: false
matrix:
ruby:
- 3.3.6
- 3.4.1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
fail-fast: false
matrix:
ruby:
- 3.3.6
- 3.4.1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- "3.1"
- "3.2"
- "3.3"
- "3.4"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -35,7 +36,7 @@ jobs:
DATABASE_URL: postgres://test:[email protected]:5432/grape_boilerplate_test
RACK_ENV: test
- name: Updload code coverage results
if: matrix.ruby == 3.3
if: matrix.ruby == 3.4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.2
3.4.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.6-alpine as builder
FROM ruby:3.4.1-alpine as builder

WORKDIR /usr/src/app

Expand All @@ -13,7 +13,7 @@ RUN bundle config set --without 'development test' \
&& bundle install --jobs=3 --retry=3

# Production
FROM ruby:3.3.6-alpine as production
FROM ruby:3.4.1-alpine as production

ENV TINI_SUBREAPER=true

Expand Down
12 changes: 7 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -153,16 +153,18 @@ GEM
mustermann (>= 1.0.0)
nenv (0.3.0)
nio4r (2.7.4)
nokogiri (1.16.8)
nokogiri (1.18.2)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.16.8-aarch64-linux)
nokogiri (1.18.2-aarch64-linux-musl)
racc (~> 1.4)
nokogiri (1.16.8-arm64-darwin)
nokogiri (1.18.2-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.8-x86_64-darwin)
nokogiri (1.18.2-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.8-x86_64-linux)
nokogiri (1.18.2-x86_64-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.2-x86_64-linux-musl)
racc (~> 1.4)
notiffany (0.1.3)
nenv (~> 0.1)
Expand Down
2 changes: 1 addition & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.6-alpine
FROM ruby:3.4.1-alpine

WORKDIR /usr/src/app

Expand Down

0 comments on commit b9c8a5f

Please sign in to comment.