Skip to content

Bump actions/checkout from 4 to 6#1

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-6
Closed

Bump actions/checkout from 4 to 6#1
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-6

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps actions/checkout from 4 to 6.

Release notes

Sourced from actions/checkout's releases.

v6.0.0

What's Changed

Full Changelog: actions/checkout@v5.0.0...v6.0.0

v6-beta

What's Changed

Updated persist-credentials to store the credentials under $RUNNER_TEMP instead of directly in the local git config.

This requires a minimum Actions Runner version of v2.329.0 to access the persisted credentials for Docker container action scenarios.

v5.0.1

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

v5.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

Full Changelog: actions/checkout@v4...v5.0.0

v4.3.1

What's Changed

Full Changelog: actions/checkout@v4...v4.3.1

v4.3.0

What's Changed

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels May 22, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 3, 2026

Copy link
Copy Markdown
Contributor Author

Looks like actions/checkout is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 3, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/actions/checkout-6 branch June 3, 2026 07:39
BigSimmo added a commit that referenced this pull request Jul 2, 2026
The golden case "In the clinical flowchart, what is the next step after
red-zone risk?" failed content-recall because the answer chunks (red
zone -> escalate / urgent senior review) never reached the top 5. Three
compounding causes, smallest fix applied at each level:

1. Candidate generation (root cause): the flowchart query variants
   "red zone risk flow" and "risk flow review urgent escalation" are
   fully conjunctive under websearch_to_tsquery and matched 0 and 2
   live chunks - they contributed nothing. Replaced with a plain
   "red zone" variant (13 precise zone-action chunks live) gated on the
   query mentioning a zone.

2. Fast-path gating: both decideTextFastPath (document_lookup) and the
   visual_flowchart_risk_gate accepted action-free flowchart pages -
   the gate satisfied its two term groups across different results and
   image captions. Flowchart/zone action queries now require zone AND
   action language on a single top result before skipping structured
   retrieval (mirrors threshold_action_requires_structured_retrieval).

3. Ranking: riskFlowchartSource only recognised flowchart-worded text,
   so escalation protocols expressing the flowchart steps as prose took
   the -0.18 generic penalty while unrelated risk-assessment flowcharts
   kept the +0.16 boost. Zone+action text now counts as risk-flowchart
   source evidence.

Validation: golden retrieval eval 10/10 (content_recall@5 1.0, up from
0.9667; doc_recall@5 1.0; hit_rate 1.0), latency eval 0 failures
(median 1.2s, p90 12.1s), fixed case answers in ~1.0s via fast path
with the correct evidence ranked #1. Full vitest 691 passed, typecheck
and lint clean. Three new unit tests pin the gates and ranking rule.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
BigSimmo added a commit that referenced this pull request Jul 3, 2026
* eval(retrieval): add content_mrr@10 passage-rank metric

The golden retrieval eval measured document-level rank (mrr@10, over
expectedDocumentSubstrings) and content-level *recall* (contentRecall@5,
binary "is the answer passage in the top 5"), but nothing measured how HIGH
the answer-bearing passage ranks. That left rerank/chunking changes that lift
the right passage from #5 to #1 unprovable: content recall stays 1.0 across
that move and doc-level mrr is blind to passage order within a document.

Add contentReciprocalRankAt10 — the mean over a case's expected content terms
of the reciprocal rank of the earliest top-10 result carrying that term
(1.0 iff every term rides the rank-1 passage). Surface it in the summary as
content_mrr_at_10, averaged only over cases that declare content terms
(content_mrr_case_count) so structural zeros don't dilute the signal, plus a
per-case contentRR@10 column and the human summary line.

Purely additive: the summary type is inferred, so reindex-eval-gate and the
other summary consumers are unaffected. Guarded by a focused test proving the
metric drops to 0.5 when the answer passage is demoted below a distractor
while content recall stays 1.0.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

* Fix retrieval content MRR scoring

* style: prettier-format eval-retrieval content_mrr scoring

The retrievalLimitForGoldenCase fix landed without a prettier pass, failing
the required verify check (format:check). Formatting-only; no logic change.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

* eval(retrieval): address Codex review on content_mrr@10 evidence text

Two remaining P2 review findings on the passage-rank metric:

- Quality-eval path truncation: runRetrievalQualityCases (eval-quality.ts) still
  fetched topK=testCase.topK, so content_mrr@10 silently degraded to content_mrr@topK
  for the many fixtures with topK<10. Now uses retrievalLimitForGoldenCase(=max(topK,10)),
  matching the standalone runner. hit@K semantics are unchanged (evaluateGoldenRetrievalCase
  still slices to the case's topK), so only positions 9-10 are exposed for the @10 metric.

- Missing first-class table/visual evidence: resultContentEvidenceText matched table_facts
  and a few image fields but not typed index-unit content or the accessible table markdown /
  table rows, so a hit carrying the answer only in a medication-chart row / risk-matrix cell
  / flowchart step was invisible to contentReciprocalRankAt10. Now includes index_unit
  title+content and image accessibleTableMarkdown + flattened tableRows.

The retrieval_synopsis stays in the evidence text: it is the stored first-class passage
representation used in ranking/display, and the metadata-distractor test already guards the
title/file/section vector that the earlier fix excluded.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
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 github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants