From f9292b27bd12609c60862cd6f0fda4d97db87028 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Mon, 11 Aug 2025 19:39:33 +0100 Subject: [PATCH] ruby: add debian 13 system ruby version support --- cookbooks/ruby/attributes/default.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cookbooks/ruby/attributes/default.rb b/cookbooks/ruby/attributes/default.rb index 39ac754e5..35bf098a1 100644 --- a/cookbooks/ruby/attributes/default.rb +++ b/cookbooks/ruby/attributes/default.rb @@ -1,7 +1,11 @@ default[:ruby][:fullstaq] = true default[:ruby][:system_version] = if platform?("debian") - "3.1" + if node[:platform_version].to_i >= 13 + "3.3" + else + "3.1" + end elsif node[:lsb][:release].to_f < 22.04 "2.7" else -- 2.39.5