build(deps): bump actions/checkout from 4 to 6#2
Merged
Conversation
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>
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
This was referenced May 12, 2026
apet97
added a commit
that referenced
this pull request
May 13, 2026
…efreshes
The sidebar previously only knew "when did I last run Check Compliance in
this tab?" — a freshly-opened sidebar showed no recency indicator at all,
and there was no signal that Clockify had fired webhooks the consumer
hadn't drained yet. Admins were left guessing whether the findings on
screen were stale.
Backend
- Add IngestionRunRepository.findFirstByWorkspaceIdAndStatusOrderByCompletedAtDesc.
- Add GET /api/ingest/runs/latest (declared before /api/ingest/runs/{runId}
so Spring matches the literal first). Returns the workspace's most
recent COMPLETED run, or 204 No Content when none exists. Scoped to the
JWT workspace; available to any authenticated user (read-only).
- Three new IngestRunControllerTest cases cover: picks newest COMPLETED
(RUNNING/FAILED rows must not shadow it), 204 when no COMPLETED run
exists, cross-workspace isolation.
Sidebar
- On load, fetch /api/ingest/runs/latest and /api/refresh-signals in
parallel alongside the existing /api/session + preset catalog calls.
Both new fetches degrade silently on transient backend failure so the
rest of the sidebar still boots.
- applyLatestRunSnapshot seeds state.lastRunAt / state.lastRunRange /
state.lastRun.entriesProcessed from the latest run, so the existing
"Last checked Xm ago" caption and the Refresh button's "re-run last
range" affordance work without requiring a local Check Compliance.
- computePendingRefreshFromSignals picks the newest PENDING/CLAIMED
refresh signal whose receivedAt is after the latest completed run, and
a new amber "Pending refresh · webhook Xm ago" pill renders next to
the "Last checked" caption when that signal exists. A successful
runCompliance() clears the pill (any pending signals are now stale or
consumed).
- The existing every-30s relative-time ticker now also refreshes the
pending-refresh label; the visibilitychange handler refreshes both on
return-from-hidden.
282 tests green (279 + 3 new).
Plan: ~/.claude/plans/all-you-re-picking-up-zesty-moth.md (item #2).
apet97
added a commit
that referenced
this pull request
May 13, 2026
Admins repeatedly screen-scraped the sidebar pivot to hand compliance summaries to legal / HR. The data was always one fetch away — just needed a delivery channel. Backend - New GET /api/findings/export?dateRangeStart=…&dateRangeEnd=…&format=csv returning text/csv with Content-Disposition: attachment; filename="break-compliance-<wsId>-<from>-<to>.csv". Same auth + workspace scope as GET /api/findings — read-only, no admin gate. Unknown formats return 400 instead of silently degrading. - RFC 4180 escaping (quote-wrap on comma/quote/CR/LF; embedded quotes doubled). Columns: date, userId, userName, severity, code, message, workMinutes, breakMinutes, syntheticBreakMinutes, templateId, createdAt. Zero-valued evidence minutes collapse to empty cells so spreadsheets don't render a forest of zeros. - No BOM — Content-Type carries the UTF-8 charset and BOM would pollute jq / csvkit / pandas output for non-Excel consumers. - Four new FindingsControllerTest cases: header-only baseline, escape path with commas+quotes+newline in a seeded finding, 400 for unknown format, 401 for missing token. Sidebar - "⬇ Export CSV" link button rendered next to the Pivot/Checklist view-toggle (new .results-toolbar flex wrapper). Hidden until state.findings.length > 0; revealed by renderResults(). - Click handler authenticates via the existing x-addon-token header, blobs the response, and triggers a browser-native download with the server-supplied filename. ObjectURL revoked on next animation frame. - Falls back to the live computeDateRange() if state.lastRunRange hasn't been seeded yet (item #2's /api/ingest/runs/latest wiring usually provides it; this is the cold-start safety net). 283 tests green (279 + 4 new). Plan: ~/.claude/plans/all-you-re-picking-up-zesty-moth.md (item #3).
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.
Bumps actions/checkout from 4 to 6.
Release notes
Sourced from actions/checkout's releases.
... (truncated)
Changelog
Sourced from actions/checkout's changelog.
... (truncated)
Commits
de0fac2Fix tag handling: preserve annotations and explicit fetch-tags (#2356)064fe7fAdd orchestration_id to git user-agent when ACTIONS_ORCHESTRATION_ID is set (...8e8c483Clarify v6 README (#2328)033fa0dAdd worktree support for persist-credentials includeIf (#2327)c2d88d3Update all references from v5 and v4 to v6 (#2314)1af3b93update readme/changelog for v6 (#2311)71cf226v6-beta (#2298)069c695Persist creds to a separate file (#2286)ff7abcdUpdate README to include Node.js 24 support details and requirements (#2248)08c6903Prepare v5.0.0 release (#2238)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)