Skip to content

Commit

Permalink
Merge pull request #642 from voxpupuli/modulesync
Browse files Browse the repository at this point in the history
modulesync 7.3.0
  • Loading branch information
bastelfreak authored Mar 26, 2024
2 parents 24f4f64 + 3dcbd59 commit b5d71ff
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@

name: CI

on: pull_request
on:
pull_request: {}
push:
branches:
- main
- master

concurrency:
group: ${{ github.ref_name }}
Expand All @@ -13,4 +18,6 @@ concurrency:
jobs:
puppet:
name: Puppet
uses: voxpupuli/gha-puppet/.github/workflows/basic.yml@v2
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v2
with:
pidfile_workaround: 'false'
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: '7.2.0'
modulesync_config_version: '7.3.0'
10 changes: 10 additions & 0 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@
'present' => $r10k::version,
'absent' => 'absent',
}
# we need to pin the faraday-net_http version for puppet 7
if versioncmp($facts['puppetversion'], '8.0.0') < 0 {
package { 'faraday':
ensure => present,
provider => $r10k::provider,
install_options => [
{ '-v' => '2.8.1' },
],
}
}
package { $r10k::package_name:
ensure => $ensure,
provider => $r10k::provider,
Expand Down

0 comments on commit b5d71ff

Please sign in to comment.