Conversation
There was a problem hiding this comment.
Pull request overview
This PR disables bundler caching in the GitHub Actions CI workflow. The change sets bundler-cache: false in the ruby/setup-ruby action, which means dependencies will be installed fresh on every CI run instead of being cached between runs.
Key Changes:
- Disabled bundler-cache feature in the main workflow
- Manual
bundle installremains in place as a separate step
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| with: | ||
| ruby-version: ${{ matrix.ruby }} | ||
| bundler-cache: true | ||
| bundler-cache: false |
There was a problem hiding this comment.
Disabling bundler-cache will significantly slow down CI runs as dependencies will need to be downloaded and installed on every run. The ruby/setup-ruby action's bundler-cache feature is designed to cache gems between runs, which can save minutes per build. If there are specific issues with the cache, consider using cache-version parameter to invalidate it or investigating the root cause rather than disabling caching entirely.
| bundler-cache: false | |
| bundler-cache: true |
No description provided.