Skip to content

Commit ab62c7d

Browse files
committed
(MODULES-11371) Pin gems for auto release
Modeling after the learnings of the support team in commit puppetlabs/puppetlabs-puppet_metrics_collector@78dd858 This commit pins the github_changelog_generator gem to its latest version to make it work, and the concurrent-ruby to an older version to compensate for the version of PDK shipped in the dev-tools container image.
1 parent 148316e commit ab62c7d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.sync.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ Gemfile:
2929
from_env: BEAKER_PUPPET_VERSION
3030
version: '~> 1.22'
3131
- gem: github_changelog_generator
32+
version: '= 1.16.4'
33+
- gem: concurrent-ruby
34+
version: '= 1.1.10'
3235
# We can unpin async when we move to Ruby 3
3336
- gem: async
3437
version: '~> 1'

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ group :development do
4040
gem "beaker-hostgenerator"
4141
gem "beaker-rspec"
4242
gem "beaker-puppet", *location_for(ENV['BEAKER_PUPPET_VERSION'] || '~> 1.22')
43-
gem "github_changelog_generator", require: false
43+
gem "github_changelog_generator", '= 1.16.4', require: false
44+
gem "concurrent-ruby", '= 1.1.10', require: false
4445
gem "async", '~> 1', require: false
4546
gem "beaker-module_install_helper", require: false
4647
gem "beaker-puppet_install_helper", require: false

0 commit comments

Comments
 (0)