Modernize CI and dependency setup#55
Merged
Merged
Conversation
- CI: bump actions/checkout v2 -> v4 (retired Node runner) - CI: pin MongoDB service image to mongo:8 so a future Mongo major can't silently break the build - CI: add a non-blocking JRuby 10 test entry (Mongoid 9.0) via a per-entry continue-on-error flag, exercising the :jruby gems that Appraisals already declares without blocking merges - Add .github/dependabot.yml for weekly github-actions updates - Gemfile: track Mongoid 9.1 and drop the semantic_logger git pin (5.0.0 is released on RubyGems) - Appraisals/gemfiles: bump activerecord to ~> 7.2.3 and remove the semantic_logger git pin Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Job-level continue-on-error keeps the workflow green but the individual matrix check still reports failure on the PR. Move continue-on-error to the Set up Ruby and Run Tests steps so the JRuby job itself succeeds, giving a genuinely non-blocking (green) check. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Housekeeping to modernize CI and the dependency declarations. No changes to gem runtime code.
actions/checkoutv2 → v4 in both the lint and test jobs (v2 runs on a retired Node runner).mongo:8(was unpinnedmongo/latest) so a future MongoDB major can't silently break the build. Mongo 8 is supported by Mongoid 8.1–9.1.jruby-10.0on the Mongoid 9.0 gemfile, gated by a per-entrycontinue-on-error: ${{ matrix.experimental || false }}. This actually exercises the:jrubygemsAppraisalsalready declares (activerecord-jdbcsqlite3-adapter,jdbc-sqlite3) without blocking merges. MRI jobs remain blocking..github/dependabot.ymlfor weeklygithub-actionsupdates (bundler is omitted since no lockfiles are committed).~> 9.1.0and drop thesemantic_loggergit pin (5.0.0 is released on RubyGems).activerecordto~> 7.2.3and remove thesemantic_loggergit pin.Notes
gemfiles/*.lockare gitignored (unchanged), so CI resolves fresh.🤖 Generated with Claude Code