Skip to content

⬆️ Bump rubocop from 1.86.1 to 1.86.2 in /examples/ruby in the dependencies group across 1 directory#466

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/examples/ruby/dependencies-d708c0bb5a
Open

⬆️ Bump rubocop from 1.86.1 to 1.86.2 in /examples/ruby in the dependencies group across 1 directory#466
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/examples/ruby/dependencies-d708c0bb5a

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 14, 2026

Bumps the dependencies group with 1 update in the /examples/ruby directory: rubocop.

Updates rubocop from 1.86.1 to 1.86.2

Release notes

Sourced from rubocop's releases.

RuboCop v1.86.2

New features

Bug fixes

  • #15156: Fix an error for Style/HashLookupMethod when chaining fetch (or []) calls on the same expression. (@​koic)
  • #15161: Fix an error for Style/ReduceToHash when nested each_with_object/inject/reduce calls would build hashes. (@​koic)
  • #15144: Fix an error in Style/SoleNestedConditional when autocorrecting nested conditionals containing comments. (@​koic)
  • #15040: Exclude constants from Style/ModuleMemberExistenceCheck. (@​t-daisuke)
  • #15155: Fix false negatives in Style/RedundantSelf when an explicit self receiver in one scope matches the LHS of an ||=, &&=, or op_asgn in another scope. (@​koic)
  • #15107: Fix false positives in Lint/RequireRelativeSelfPath when a non-.rb file uses require_relative with its own basename. (@​koic)
  • #15137: Fix incorrect "does not support IndentationWidth parameter" warning for Layout/ClosingParenthesisIndentation and Layout/CommentIndentation. (@​koic)
  • #15148: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in rescue or ensure bodies. (@​koic)
  • #15147: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in the body of unless. (@​koic)
  • #15163: Fix false positives in Style/Copyright when Notice pattern starts with \A#, uses \s metacharacters, or has multiple spaces after #. (@​koic)
  • #10179: Fix false positives in Style/DocumentDynamicEvalDefinition when the heredoc contains an escaped interpolation (\#{...}). (@​eyupcanakman)
  • #15154: Fix bug where specifying --out disables parallelization. (@​deivid-rodriguez)
  • #15106: Fix TargetFinder to work correctly inside hidden parent directories. (@​alpaca-tc)
  • #15102: Fix FrozenError in DisabledConfigFormatter for frozen array config parameters. (@​koic)
  • #15141: Fix incorrect autocorrect for Gemspec/RequireMFA causing an infinite loop when rubygems_mfa_required metadata uses a symbol key. (@​koic)
  • #15142: Fix infinite loop for --disable-uncorrectable and offense near heredoc. (@​jonas054)
  • #15054: Fix false positive for Layout/MultilineMethodCallIndentation when a dot-aligned method chain is inside a hash pair value. (@​nicolas-finary)
  • #15136: Fix false positive for Lint/MissingCopEnableDirective when # rubocop:disable is wrapped in a # rubocop:push / # rubocop:pop block. (@​koic)
  • #15115: Fix an incorrect autocorrect in Style/RegexpLiteral when the regexp contains unbalanced braces that conflict with the preferred %r delimiters. (@​koic)
  • #15130: Fix incorrect autocorrect in Style/Copyright when AutocorrectNotice lacks a # prefix or Notice pattern starts with ^#. (@​koic)
  • #14821: Fix Style/IfInsideElse autocorrect moving comments into the wrong branch when a comment precedes the nested if in an else. (@​hammadxcm)
  • #14583: Fix template extractor applying only the last fragment's autocorrection. (@​zeronosu77108)
  • #14971: Fix false positive for Style/WhileUntilModifier when the body is a conditional. (@​fujitanisora)
Changelog

Sourced from rubocop's changelog.

1.86.2 (2026-05-14)

New features

Bug fixes

  • #15156: Fix an error for Style/HashLookupMethod when chaining fetch (or []) calls on the same expression. ([@​koic][])
  • #15161: Fix an error for Style/ReduceToHash when nested each_with_object/inject/reduce calls would build hashes. ([@​koic][])
  • #15144: Fix an error in Style/SoleNestedConditional when autocorrecting nested conditionals containing comments. ([@​koic][])
  • #15040: Exclude constants from Style/ModuleMemberExistenceCheck. ([@​t-daisuke][])
  • #15155: Fix false negatives in Style/RedundantSelf when an explicit self receiver in one scope matches the LHS of an ||=, &&=, or op_asgn in another scope. ([@​koic][])
  • #15107: Fix false positives in Lint/RequireRelativeSelfPath when a non-.rb file uses require_relative with its own basename. ([@​koic][])
  • #15137: Fix incorrect "does not support IndentationWidth parameter" warning for Layout/ClosingParenthesisIndentation and Layout/CommentIndentation. ([@​koic][])
  • #15148: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in rescue or ensure bodies. ([@​koic][])
  • #15147: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in the body of unless. ([@​koic][])
  • #15163: Fix false positives in Style/Copyright when Notice pattern starts with \A#, uses \s metacharacters, or has multiple spaces after #. ([@​koic][])
  • #10179: Fix false positives in Style/DocumentDynamicEvalDefinition when the heredoc contains an escaped interpolation (\#{...}). ([@​eyupcanakman][])
  • #15154: Fix bug where specifying --out disables parallelization. ([@​deivid-rodriguez][])
  • #15106: Fix TargetFinder to work correctly inside hidden parent directories. ([@​alpaca-tc][])
  • #15102: Fix FrozenError in DisabledConfigFormatter for frozen array config parameters. ([@​koic][])
  • #15141: Fix incorrect autocorrect for Gemspec/RequireMFA causing an infinite loop when rubygems_mfa_required metadata uses a symbol key. ([@​koic][])
  • #15142: Fix infinite loop for --disable-uncorrectable and offense near heredoc. ([@​jonas054][])
  • #15054: Fix false positive for Layout/MultilineMethodCallIndentation when a dot-aligned method chain is inside a hash pair value. ([@​nicolas-finary][])
  • #15136: Fix false positive for Lint/MissingCopEnableDirective when # rubocop:disable is wrapped in a # rubocop:push / # rubocop:pop block. ([@​koic][])
  • #15115: Fix an incorrect autocorrect in Style/RegexpLiteral when the regexp contains unbalanced braces that conflict with the preferred %r delimiters. ([@​koic][])
  • #15130: Fix incorrect autocorrect in Style/Copyright when AutocorrectNotice lacks a # prefix or Notice pattern starts with ^#. ([@​koic][])
  • #14821: Fix Style/IfInsideElse autocorrect moving comments into the wrong branch when a comment precedes the nested if in an else. ([@​hammadxcm][])
  • #14583: Fix template extractor applying only the last fragment's autocorrection. ([@​zeronosu77108][])
  • #14971: Fix false positive for Style/WhileUntilModifier when the body is a conditional. ([@​fujitanisora][])
Commits
  • e513d33 Cut 1.86.2
  • 5fea1b5 Update Changelog
  • 2a3dfcd Don't use Registry#to_h
  • 836b275 Simplify registry internals
  • 90348d5 Fix false positives in Style/Copyright
  • 7419163 Fix extension suggestion documentation link
  • e467335 Merge pull request #15161 from koic/fix_an_error_for_style_reduce_to_hash.md
  • bd48b6b Merge pull request #15160 from lovro-bikic/autoload-mixins
  • b9cda61 Autoload mixins instead of requiring them
  • 55a8278 Fix an error for Style/ReduceToHash cop
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels May 14, 2026
@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (ubuntu-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 2.450s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (macos-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: macos-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 2.091s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (ubuntu-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.192s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (ubuntu-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 2.717s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (ubuntu-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.492s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (macos-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: macos-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 2.468s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (macos-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: macos-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 2.294s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (macos-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: macos-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 1.719s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (windows-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: windows-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.840s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (windows-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: windows-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.746s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (windows-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: windows-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.834s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (windows-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: windows-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 5.140s ⏱️

Bumps the dependencies group with 1 update in the /examples/ruby directory: [rubocop](https://github.com/rubocop/rubocop).


Updates `rubocop` from 1.86.1 to 1.86.2
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.86.1...v1.86.2)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.86.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title ⬆️ Bump rubocop from 1.86.1 to 1.86.2 in /examples/ruby in the dependencies group ⬆️ Bump rubocop from 1.86.1 to 1.86.2 in /examples/ruby in the dependencies group across 1 directory May 15, 2026
@dependabot dependabot Bot force-pushed the dependabot/bundler/examples/ruby/dependencies-d708c0bb5a branch from d34ea14 to 0db5e10 Compare May 15, 2026 17:06
@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (ubuntu-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 2.549s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (ubuntu-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 2.207s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (macos-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: macos-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 2.657s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (macos-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: macos-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.025s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (macos-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: macos-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 1.834s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (ubuntu-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.009s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (ubuntu-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.407s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (macos-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py84198%113
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959399% 

Pytest Result Summary (os: macos-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
201 0 💤 3 ❌ 0 🔥 1.528s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (windows-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: windows-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.837s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (windows-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: windows-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.891s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (windows-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: windows-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 4.475s ⏱️

@github-actions
Copy link
Copy Markdown

coverage

Coverage Report (windows-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
cache_version_info.py2400100% 
cli.py510100% 
json_to_github_output.py39294%60, 67
update_matrix_dynamic.py990100% 
version
   __init__.py00100% 
version/core
   __init__.py00100% 
   base.py840100% 
   exceptions.py40100% 
   utils.py1120100% 
version/fetchers
   __init__.py00100% 
   go.py810100% 
   nodejs.py1250100% 
   python.py420100% 
   ruby.py410100% 
   rust.py410100% 
TOTAL959299% 

Pytest Result Summary (os: windows-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
201 0 💤 2 ❌ 0 🔥 3.872s ⏱️

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

Labels

dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants