From 12a76354b36fb8b3616e34fa0cd0d9c300c65d1e Mon Sep 17 00:00:00 2001 From: pezholio Date: Thu, 1 Aug 2024 14:05:28 +0100 Subject: [PATCH] Update minimum Ruby version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `2.7.x` is end of life now, so let’s run integration tests and develop against the lowest supported version of Ruby --- .ruby-version | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ruby-version b/.ruby-version index 6a81b4c..9cec716 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.7.8 +3.1.6 diff --git a/Dockerfile b/Dockerfile index 08b5e46..51305c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # We want to support older Rubies -ARG RUBY_VERSION=2.7.8 +ARG RUBY_VERSION=3.1.6 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here