Upgrade Ruby to latest (3.2.2 -> 3.4.7)

This commit is contained in:
Joshua Young
2025-11-13 20:31:57 +05:30
parent 4d17e16fdb
commit ebbcfc39e4
3 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ AllCops:
- 'tmp/**/*'
- 'tools/**/*'
- 'doc/**/*'
TargetRubyVersion: 3.0
TargetRubyVersion: <%= File.read(".ruby-version").strip[/^(\d+\.\d+)/, 1] || raise("Ruby version not found") %>
NewCops: enable
Layout/LineLength:

View File

@@ -1 +1 @@
3.2.2
3.4.7

View File

@@ -15,7 +15,7 @@
###########################################################################################################
# ---------------------------- Start of Builder 0 - Gemset Build ------------------------------------------
FROM ruby:3.2.1-slim-bullseye AS builder
FROM ruby:3.4.7-slim-bullseye AS builder
COPY . /beef
@@ -44,7 +44,7 @@ RUN echo "gem: --no-ri --no-rdoc" > /etc/gemrc \
# ---------------------------- Start of Builder 1 - Final Build ------------------------------------------
FROM ruby:3.2.1-slim-bullseye
FROM ruby:3.4.7-slim-bullseye
LABEL maintainer="Beef Project" \
source_url="github.com/beefproject/beef" \
homepage="https://beefproject.com/"