Unverified Commit b17511fc authored by Kenyon Ralph's avatar Kenyon Ralph Committed by GitHub
Browse files

Merge pull request #453 from voxpupuli/modulesync

modulesync 10.8.0
parents 3005bee2 2ee26ee8
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
@@ -11,6 +11,29 @@ on:
    branches:
      - main
      - master
  workflow_dispatch:
    inputs:
      beaker_staging_url:
        description: |-
          URL to a staging Server to test unreleased packages.
          We will append the version to the Server and assume all packages are in the same directory.
          Only supported for AIO packages.
        required: false
        type: string
        default: 'https://artifacts.voxpupuli.org/openvox-agent'
      beaker_collection:
        description: |-
          When set to staging, we will download the packages from staging_url.
          Otherwise we will use the official repos. Supported values: puppet7, puppet8, openvox7, openvox8, staging.
          When unset, we will generate a list of supported collections based on metadata.json.
        required: false
        type: string
      beaker_staging_version:
        description: |-
          The package version we want to test.
          Only used for beaker_collection = staging
        required: false
        type: string

concurrency:
  group: ${{ github.ref_name }}
@@ -23,3 +46,7 @@ jobs:
  puppet:
    name: Puppet
    uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v4
    with:
      beaker_staging_url: ${{ inputs.beaker_staging_url }}
      beaker_collection: ${{ inputs.beaker_collection }}
      beaker_staging_version: ${{ inputs.beaker_staging_version }}
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

modulesync_config_version: '10.7.0'
modulesync_config_version: '10.8.0'
+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'

group :test do
  gem 'voxpupuli-test', '~> 14.0',  :require => false
  gem 'puppet_metadata', '~> 6.0',  :require => false
  gem 'puppet_metadata', '~> 6.1',  :require => false
end

group :development do
@@ -15,7 +15,7 @@ group :development do
end

group :system_tests do
  gem 'voxpupuli-acceptance', '~> 4.0',  :require => false
  gem 'voxpupuli-acceptance', '~> 4.4',  :require => false
end

group :release do