From b8e38f3c5ad9d1cdbfc4d4a4ec0342f6bb3935c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Gajdu=C5=A1ek?= Date: Wed, 1 Jul 2026 17:51:09 +0200 Subject: [PATCH] Pin foreman-tasks upper bound to < 13.0.0 foreman-tasks 13.0.0 requires Foreman >= 5.0. Without an upper bound, Bundler resolves to 13.0.0 on stable branches, breaking CI with PluginRequirementError. --- foreman_rh_cloud.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foreman_rh_cloud.gemspec b/foreman_rh_cloud.gemspec index 96356332f..95b436896 100644 --- a/foreman_rh_cloud.gemspec +++ b/foreman_rh_cloud.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |s| s.required_ruby_version = '>= 2.7', '< 4' s.add_dependency 'foreman_ansible', '>= 15.0.0' - s.add_dependency 'foreman-tasks', '>= 10.0.0' + s.add_dependency 'foreman-tasks', '>= 10.0.0', '< 13.0.0' s.add_runtime_dependency 'katello', '>= 4.18' s.add_development_dependency 'rdoc'