From 23805e9ba5018480840c2feb11f18a4cea10725d Mon Sep 17 00:00:00 2001 From: Adam Ruzicka Date: Wed, 14 Jan 2026 10:01:24 +0100 Subject: [PATCH] Use nodejs 22 by default --- manifests/init.pp | 2 +- spec/classes/katello_devel_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 1c180e6..b295612 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -86,7 +86,7 @@ String $oauth_key = $katello_devel::params::oauth_key, String $oauth_secret = $katello_devel::params::oauth_secret, String $post_sync_token = 'test', - String $modulestream_nodejs = '18', + String $modulestream_nodejs = '22', Boolean $manage_bundler = true, String $initial_organization = 'Default Organization', String $initial_location = 'Default Location', diff --git a/spec/classes/katello_devel_spec.rb b/spec/classes/katello_devel_spec.rb index 8e892c9..f25a715 100644 --- a/spec/classes/katello_devel_spec.rb +++ b/spec/classes/katello_devel_spec.rb @@ -15,7 +15,7 @@ end it { is_expected.to compile.with_all_deps } - it { is_expected.to contain_package('nodejs').with_provider('dnfmodule').with_ensure('18') } + it { is_expected.to contain_package('nodejs').with_provider('dnfmodule').with_ensure('22') } it { is_expected.to contain_package('npm') } it { is_expected.to contain_class('katello_devel::install') }