From: Tom Hughes Date: Sat, 22 Feb 2025 16:15:26 +0000 (+0000) Subject: Use ruby 3.3 for blogs X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/d0891b8e3e5655c0a4af0c8c7842735a8913a61f?ds=inline;hp=-c Use ruby 3.3 for blogs --- d0891b8e3e5655c0a4af0c8c7842735a8913a61f diff --git a/.kitchen.yml b/.kitchen.yml index 314ee3caa..6f4eb6bb6 100644 --- a/.kitchen.yml +++ b/.kitchen.yml @@ -93,6 +93,9 @@ suites: - name: blogs run_list: - recipe[blogs::default] + attributes: + ruby: + version: 3.3 - name: chef run_list: - recipe[chef::default] diff --git a/roles/blogs.rb b/roles/blogs.rb index 3881d1396..87c71902a 100644 --- a/roles/blogs.rb +++ b/roles/blogs.rb @@ -1,6 +1,12 @@ name "blogs" description "Role applied to all blog aggregators" +default_attributes( + :ruby => { + :version => "3.3" + } +) + run_list( "recipe[blogs]" )