From b827d7ca9b0537a47047813f791f78b3ea778b94 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Sat, 22 Aug 2026 12:30:43 -0700 Subject: [PATCH] Put every Ruby pin on 3.4.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three pins, two values: Dockerfile said 3.4.5, Dockerfile-export said 3.4.7, .ruby-version said 3.4.5 — the export image had already been bumped on its own and nobody noticed the other two lagging. Both Dockerfiles carry a comment telling you to keep them in step. 3.4.10 is the current 3.4.x. CI resolves its Ruby from .ruby-version, so this is the version the tests now run under. --- .ruby-version | 2 +- Dockerfile | 2 +- Dockerfile-export | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ruby-version b/.ruby-version index 4f5e697..84d6c67 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.4.5 +3.4.10 diff --git a/Dockerfile b/Dockerfile index b65a227..1002a6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:1 # Make sure it matches the Ruby version in .ruby-version and Gemfile -ARG RUBY_VERSION=3.4.5 +ARG RUBY_VERSION=3.4.10 FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base # Rails app lives here diff --git a/Dockerfile-export b/Dockerfile-export index 7bdd939..d130d17 100644 --- a/Dockerfile-export +++ b/Dockerfile-export @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:1 # Make sure it matches the Ruby version in .ruby-version and Gemfile -ARG RUBY_VERSION=3.4.7 +ARG RUBY_VERSION=3.4.10 FROM ruby:$RUBY_VERSION-slim as base # Install the tools we need