Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,16 @@ commands:
steps:
- restore_cache:
key: bundle-{{ checksum "Gemfile.lock" }}
- run:
name: Configure Git credentials for private gems
command: |
git config --global url."https://x-access-token:${HONEYCRISP_PAT}@github.com/".insteadOf "https://github.com/"
- run:
name: install bundler & ruby dependencies
command: |
gem install bundler:2.3.5 --no-document && \
bundle install --jobs=4 --retry=3 --path vendor/bundle
gem install bundler:2.5.18 --no-document
bundle config set --local path 'vendor/bundle'
Copy link
Contributor Author

@tahsinaislam tahsinaislam Nov 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

--path flag is deprecated so additional line was added for the 'vendor/bundle' command

bundle install --jobs=4 --retry=3
- save_cache:
key: bundle-{{ checksum "Gemfile.lock" }}
paths: [/mnt/ramdisk/vendor/bundle]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/heroku-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
LOG_LEVEL=info \
RAILS_SERVE_STATIC_FILES=enabled \
RAILS_MASTER_KEY=${{ secrets.HEROKU_RAILS_MASTER_KEY }} \
BUNDLE_GITHUB__COM=${{ secrets.BUNDLE_GITHUB__COM }} \
BUNDLE_GITHUB__COM=x-access-token:${{ secrets.HONEYCRISP_PAT }} \
FRAUD_INDICATORS_KEY=${{ secrets.FRAUD_INDICATORS_KEY }} \
HEROKU_DNS_AWS_ACCESS_KEY_ID=${{ secrets.HEROKU_DNS_AWS_ACCESS_KEY_ID }} \
HEROKU_DNS_SECRET_ACCESS_KEY=${{ secrets.HEROKU_DNS_SECRET_ACCESS_KEY }} \
Expand Down
Loading