Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ permissions:
jobs:
puppet:
name: Puppet
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v3
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v4
2 changes: 1 addition & 1 deletion .msync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

modulesync_config_version: '10.2.0'
modulesync_config_version: '10.4.0'
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
source ENV['GEM_SOURCE'] || 'https://rubygems.org'

group :test do
gem 'voxpupuli-test', '~> 12.0', :require => false
gem 'voxpupuli-test', '~> 13.0', :require => false
gem 'puppet_metadata', '~> 5.0', :require => false
end

Expand All @@ -18,7 +18,7 @@ group :system_tests do
end

group :release do
gem 'voxpupuli-release', '~> 4.0', :require => false
gem 'voxpupuli-release', '~> 5.0', :require => false
end

gem 'rake', :require => false
Expand Down
2 changes: 0 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,9 @@
if $facts['confluence_version'] and $facts['confluence_version'] != 'unknown' {
# If the running version of CONFLUENCE is less than the expected version of CONFLUENCE
# Shut it down in preparation for upgrade.
# lint:ignore:only_variable_string
if versioncmp($version, $facts['confluence_version']) > 0 {
# lint:endignore
notify { 'Attempting to upgrade CONFLUENCE': }
exec { $stop_confluence: before => Class['confluence::facts'] }

Check warning on line 84 in manifests/init.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

exec without idempotency. set at least one of the attributes: onlyif, unless, creates, refreshonly (check: exec_idempotency)
}
}

Expand Down
Loading