-
Notifications
You must be signed in to change notification settings - Fork 3
Fix CI config by ensuring deployment unset before installing dependencies #69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -14,7 +14,13 @@ jobs: | |||||
| # Not needed with a .ruby-version file | ||||||
| ruby-version: 2.7.2 | ||||||
| # runs 'bundle install' and caches installed gems automatically | ||||||
| bundler-cache: true | ||||||
| # bundler-cache: true | ||||||
|
|
||||||
| - name: unset deployment | ||||||
|
||||||
| - name: unset deployment | |
| - name: Unset deployment |
Outdated
Copilot
AI
Feb 16, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gemfile.lock pins Bundler via BUNDLED WITH 2.2.29, but this workflow no longer uses bundler-cache and doesn’t explicitly install/pin a Bundler version. Depending on the runner’s default Bundler, bundle install can fail with a Bundler version mismatch. Consider explicitly installing/pinning the Bundler version (or configuring ruby/setup-ruby to use the lockfile’s Bundler) before running bundle install.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -18,7 +18,13 @@ jobs: | |||||
| # Not needed with a .ruby-version file | ||||||
| ruby-version: 2.7.2 | ||||||
| # runs 'bundle install' and caches installed gems automatically | ||||||
| bundler-cache: true | ||||||
| # bundler-cache: true | ||||||
|
|
||||||
| - name: unset deployment | ||||||
|
||||||
| - name: unset deployment | |
| - name: Unset deployment |
Outdated
Copilot
AI
Feb 16, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gemfile.lock pins Bundler via BUNDLED WITH 2.2.29, but this workflow no longer uses bundler-cache and doesn’t explicitly install/pin a Bundler version. Depending on the runner’s default Bundler, bundle install can fail with a Bundler version mismatch. Consider explicitly installing/pinning the Bundler version (or configuring ruby/setup-ruby to use the lockfile’s Bundler) before running bundle install.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is trailing whitespace on these lines (after the commented
bundler-cacheline and on the blank line). Consider removing it to avoid lint noise and keep diffs clean.