Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
bundler-cache: false
Copy link

Copilot AI Jan 4, 2026

Choose a reason for hiding this comment

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

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.

Suggested change
bundler-cache: false
bundler-cache: true

Copilot uses AI. Check for mistakes.

- name: Install dependencies
run: bundle install --jobs 4 --retry 3
Expand Down