Skip to content

Commit

Permalink
actions/sync/shared-config: cheaper bundler run.
Browse files Browse the repository at this point in the history
This should take less time than `bundle install`, apparently.
  • Loading branch information
MikeMcQuaid committed Jun 11, 2024
1 parent af4d02a commit ec5e065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/sync/shared-config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def git(*args)
if (target_directory_path/"Gemfile.lock").exist?
Dir.chdir target_directory_path do
puts "Running bundle install..."
system "bundle install --quiet >/dev/null"
system "bundle update --ruby --bundler --quiet >/dev/null"
end
end

Expand Down

0 comments on commit ec5e065

Please sign in to comment.