]> git.openstreetmap.org Git - chef.git/commitdiff
Use ruby 3.3 for blogs
authorTom Hughes <tom@compton.nu>
Sat, 22 Feb 2025 16:15:26 +0000 (16:15 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 22 Feb 2025 17:10:19 +0000 (17:10 +0000)
.kitchen.yml
roles/blogs.rb

index 314ee3caa8e2d1b3dcaa7e0ca285dedbfe86ad13..6f4eb6bb665f48795f994550aa3ec17978810362 100644 (file)
@@ -93,6 +93,9 @@ suites:
   - name: blogs
     run_list:
       - recipe[blogs::default]
+    attributes:
+      ruby:
+        version: 3.3
   - name: chef
     run_list:
       - recipe[chef::default]
index 3881d1396abcefe069fa1bb5de60599cfa63c7ff..87c71902a962e54aa5437416b87bd6e6b9a4629b 100644 (file)
@@ -1,6 +1,12 @@
 name "blogs"
 description "Role applied to all blog aggregators"
 
+default_attributes(
+  :ruby => {
+    :version => "3.3"
+  }
+)
+
 run_list(
   "recipe[blogs]"
 )