Skip to content

Commit

Permalink
(maint) Fix weird bundler resolution of Faraday in orchestrator clien…
Browse files Browse the repository at this point in the history
…t 0.7.1 by pinning to an old version until fixed
  • Loading branch information
jhbuchanan45 committed Nov 25, 2024
1 parent 391b83d commit 8d1a875
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ Gemfile:
version: '1.16.4' # Pinned to latest bug fix version
- gem: 'octokit'
version: '4.21.0' # Locked due to https://github.com/octokit/octokit.rb/issues/1391
# The Faraday requirements in orchestrator_client 0.7.1 causes Bundler to
# resolve the dependency in unexpected ways and causes issues in CI
- gem: 'orchestrator_client'
version: '< 0.7.1'
condition: 'ENV["GEM_BOLT"]'
Rakefile:
changelog_since_tag: '2.5.0'
default_disabled_lint_checks: ['strict_indent','manifest_whitespace_missing_newline_end_of_file']
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ group :development do
gem "bolt", '>= 3.27.2', require: false
gem "github_changelog_generator", '1.16.4', require: false
gem "octokit", '4.21.0', require: false
gem "orchestrator_client", '< 0.7.1', require: false if ENV["GEM_BOLT"]
end
group :system_tests do
gem "puppet_litmus", '~> 1.0', require: false, platforms: [:ruby, :x64_mingw]
Expand Down

0 comments on commit 8d1a875

Please sign in to comment.