Skip to content

#234 Remove redundant bundler-cache: true from rake.yml#271

Open
VasilevNStas wants to merge 2 commits into
zerocracy:masterfrom
VasilevNStas:234-bundle-cache
Open

#234 Remove redundant bundler-cache: true from rake.yml#271
VasilevNStas wants to merge 2 commits into
zerocracy:masterfrom
VasilevNStas:234-bundle-cache

Conversation

@VasilevNStas

Copy link
Copy Markdown
Contributor

The CI workflow called ruby/setup-ruby with bundler-cache: true, which installs gems into the default path and saves a cache — then immediately overrode the Bundler path to vendor/bundle and ran a second bundle install from scratch, making the first install and its cache entirely wasted.

Fixed by removing bundler-cache: true. setup-ruby now just installs Ruby, and the explicit bundle install handles gem installation into vendor/bundle.

Fixes #234

setup-ruby with bundler-cache runs bundle install into a default
path, then the next steps override the path to vendor/bundle and
run bundle install again — making the cache useless and the
install run twice.
- Add language specifier to fenced code block (MD040)
- Use 1-prefix for all ordered list items (MD029)
- Fix table pipe spacing (MD060)
- Break long table line under 80 chars (MD013)
@VasilevNStas VasilevNStas requested a review from yegor256 as a code owner June 28, 2026 09:35
@VasilevNStas

Copy link
Copy Markdown
Contributor Author

@yegor256 please review

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

rake.yml installs the bundle twice: setup-ruby@v1 caches it, then the explicit bundle install runs against a fresh vendor/bundle path

1 participant