Skip to content

Commit

Permalink
Merge pull request #170 from datacite/update-bundler-references
Browse files Browse the repository at this point in the history
update bundler version references
  • Loading branch information
wendelfabianchinsamy authored Mar 27, 2024
2 parents dde134e + 6460fdb commit 9caeadb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install
run: |
cp .env.build .env
gem install bundler -v 2.4.22
gem install bundler -v 2.5.6
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Lint and Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install
run: |
cp .env.build .env
gem install bundler -v 2.4.22
gem install bundler -v 2.5.6
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Lint and Test
Expand Down
2 changes: 1 addition & 1 deletion bin/setup
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ chdir APP_ROOT do
# Add necessary setup steps to this file.

puts "== Installing dependencies =="
system! "gem install bundler -v 2.4.22 --conservative"
system! "gem install bundler -v 2.5.6 --conservative"
system("bundle check") || system!("bundle install")

# puts "\n== Copying sample files =="
Expand Down
2 changes: 1 addition & 1 deletion bin/update
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ chdir APP_ROOT do
# Add necessary update steps to this file.

puts "== Installing dependencies =="
system! "gem install bundler -v 2.4.22 --conservative"
system! "gem install bundler -v 2.5.6 --conservative"
system("bundle check") || system!("bundle install")

puts "\n== Updating database =="
Expand Down

0 comments on commit 9caeadb

Please sign in to comment.