From 8cd4efc6f528327c2b05ef71f0cae8a5f8694e59 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 24 Apr 2025 02:06:21 +0000 Subject: [PATCH 1/2] Update dependency ruby to v3.4.3 --- Gemfile | 2 +- Gemfile.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 5458ce8..9c3bbb6 100644 --- a/Gemfile +++ b/Gemfile @@ -2,7 +2,7 @@ source 'https://rubygems.org' -ruby '3.4.2' +ruby '3.4.3' gem 'bootsnap', require: false gem 'csv' gem 'importmap-rails' diff --git a/Gemfile.lock b/Gemfile.lock index e1be840..de88030 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -623,7 +623,7 @@ CHECKSUMS zeitwerk (2.7.2) sha256=842e067cb11eb923d747249badfb5fcdc9652d6f20a1f06453317920fdcd4673 RUBY VERSION - ruby 3.4.2p28 + ruby 3.4.3p32 BUNDLED WITH 2.6.1 From bf35ca5f6e256c5d2b94c2e3dc5a2e630aed1014 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Fri, 25 Apr 2025 07:38:17 +0200 Subject: [PATCH 2/2] Upgrade to ruby 3.4.3 --- .ruby-version | 2 +- Dockerfile | 2 +- Dockerfile.dev | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ruby-version b/.ruby-version index a07bf72..753ec9c 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -ruby-3.4.2 +ruby-3.4.3 diff --git a/Dockerfile b/Dockerfile index e15f2f4..56042e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:1 # Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile -ARG RUBY_VERSION=3.4.2 +ARG RUBY_VERSION=3.4.3 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim AS base # Rails app lives here diff --git a/Dockerfile.dev b/Dockerfile.dev index a13a506..f2a82ba 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:1 # Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile -ARG RUBY_VERSION=3.4.2 +ARG RUBY_VERSION=3.4.3 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here