Skip to content

Commit 8d1a875

Browse files
committed
(maint) Fix weird bundler resolution of Faraday in orchestrator client 0.7.1 by pinning to an old version until fixed
1 parent 391b83d commit 8d1a875

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.sync.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ Gemfile:
1010
version: '1.16.4' # Pinned to latest bug fix version
1111
- gem: 'octokit'
1212
version: '4.21.0' # Locked due to https://github.com/octokit/octokit.rb/issues/1391
13+
# The Faraday requirements in orchestrator_client 0.7.1 causes Bundler to
14+
# resolve the dependency in unexpected ways and causes issues in CI
15+
- gem: 'orchestrator_client'
16+
version: '< 0.7.1'
17+
condition: 'ENV["GEM_BOLT"]'
1318
Rakefile:
1419
changelog_since_tag: '2.5.0'
1520
default_disabled_lint_checks: ['strict_indent','manifest_whitespace_missing_newline_end_of_file']

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ group :development do
3838
gem "bolt", '>= 3.27.2', require: false
3939
gem "github_changelog_generator", '1.16.4', require: false
4040
gem "octokit", '4.21.0', require: false
41+
gem "orchestrator_client", '< 0.7.1', require: false if ENV["GEM_BOLT"]
4142
end
4243
group :system_tests do
4344
gem "puppet_litmus", '~> 1.0', require: false, platforms: [:ruby, :x64_mingw]

0 commit comments

Comments
 (0)