Skip to content

Commit b9c8a5f

Browse files
authored
Update to Ruby 3.4.1 (duffn#332)
1 parent 2ab4467 commit b9c8a5f

File tree

7 files changed

+15
-12
lines changed

7 files changed

+15
-12
lines changed

.github/workflows/bundler-audit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
fail-fast: false
88
matrix:
99
ruby:
10-
- 3.3.6
10+
- 3.4.1
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4

.github/workflows/rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
fail-fast: false
88
matrix:
99
ruby:
10-
- 3.3.6
10+
- 3.4.1
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4

.github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
- "3.1"
1414
- "3.2"
1515
- "3.3"
16+
- "3.4"
1617
runs-on: ubuntu-latest
1718
steps:
1819
- uses: actions/checkout@v4
@@ -35,7 +36,7 @@ jobs:
3536
DATABASE_URL: postgres://test:[email protected]:5432/grape_boilerplate_test
3637
RACK_ENV: test
3738
- name: Updload code coverage results
38-
if: matrix.ruby == 3.3
39+
if: matrix.ruby == 3.4
3940
uses: codecov/codecov-action@v5
4041
with:
4142
token: ${{ secrets.CODECOV_TOKEN }}

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.2
1+
3.4.1

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3.6-alpine as builder
1+
FROM ruby:3.4.1-alpine as builder
22

33
WORKDIR /usr/src/app
44

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

1515
# Production
16-
FROM ruby:3.3.6-alpine as production
16+
FROM ruby:3.4.1-alpine as production
1717

1818
ENV TINI_SUBREAPER=true
1919

Gemfile.lock

+7-5
Original file line numberDiff line numberDiff line change
@@ -153,16 +153,18 @@ GEM
153153
mustermann (>= 1.0.0)
154154
nenv (0.3.0)
155155
nio4r (2.7.4)
156-
nokogiri (1.16.8)
156+
nokogiri (1.18.2)
157157
mini_portile2 (~> 2.8.2)
158158
racc (~> 1.4)
159-
nokogiri (1.16.8-aarch64-linux)
159+
nokogiri (1.18.2-aarch64-linux-musl)
160160
racc (~> 1.4)
161-
nokogiri (1.16.8-arm64-darwin)
161+
nokogiri (1.18.2-arm64-darwin)
162162
racc (~> 1.4)
163-
nokogiri (1.16.8-x86_64-darwin)
163+
nokogiri (1.18.2-x86_64-darwin)
164164
racc (~> 1.4)
165-
nokogiri (1.16.8-x86_64-linux)
165+
nokogiri (1.18.2-x86_64-linux-gnu)
166+
racc (~> 1.4)
167+
nokogiri (1.18.2-x86_64-linux-musl)
166168
racc (~> 1.4)
167169
notiffany (0.1.3)
168170
nenv (~> 0.1)

dev.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3.6-alpine
1+
FROM ruby:3.4.1-alpine
22

33
WORKDIR /usr/src/app
44

0 commit comments

Comments
 (0)