diff --git a/public/llms-full.txt b/public/llms-full.txt index fe5cfdb..d466099 100644 --- a/public/llms-full.txt +++ b/public/llms-full.txt @@ -10678,19 +10678,14 @@ interface AiReviewWorkflowSpec `zuke review` then works locally, where no workflow step exists to run. hardenRunner?: string The pinned `step-security/harden-runner@` to harden the runner with. - Defaults to a pin baked in here. - Pass it when the build sources pins from somewhere that stays current — a - generated workflow whose SHA comes from a constant in a published package is - a trap: a bot bumps the committed file, the next run regenerates it from the - stale constant, and the bump is silently reverted. - - A bare `owner/repo@`, without the `# vX.Y.Z` comment the other - generated workflows carry: attaching one needs a core newer than this - package's declared floor, and Dependabot bumps a comment-less pin anyway. - Adopt the richer form once the floor moves past that release. + Supplying this — or {@link checkout} — renders the two separate steps + instead of the prelude action, because naming an action means those + specific actions were asked for. Leave both unset for the default, which + is the one action that does both and carries its own pin. checkout?: string The pinned `actions/checkout@` to check the repository out with. + Like {@link hardenRunner}, supplying it renders the separate steps. path?: string Output path. Defaults to the host's conventional location. name?: string diff --git a/src/data/api.json b/src/data/api.json index 5bae912..e3fc78b 100644 --- a/src/data/api.json +++ b/src/data/api.json @@ -21168,14 +21168,14 @@ "kind": "property", "optional": true, "signature": "hardenRunner?: string", - "doc": "The pinned `step-security/harden-runner@` to harden the runner with.\nDefaults to a pin baked in here.\n\nPass it when the build sources pins from somewhere that stays current — a\ngenerated workflow whose SHA comes from a constant in a published package is\na trap: a bot bumps the committed file, the next run regenerates it from the\nstale constant, and the bump is silently reverted.\n\nA bare `owner/repo@`, without the `# vX.Y.Z` comment the other\ngenerated workflows carry: attaching one needs a core newer than this\npackage's declared floor, and Dependabot bumps a comment-less pin anyway.\nAdopt the richer form once the floor moves past that release." + "doc": "The pinned `step-security/harden-runner@` to harden the runner with.\n\nSupplying this — or {@link checkout} — renders the two separate steps\ninstead of the prelude action, because naming an action means those\nspecific actions were asked for. Leave both unset for the default, which\nis the one action that does both and carries its own pin." }, { "name": "checkout", "kind": "property", "optional": true, "signature": "checkout?: string", - "doc": "The pinned `actions/checkout@` to check the repository out with." + "doc": "The pinned `actions/checkout@` to check the repository out with.\nLike {@link hardenRunner}, supplying it renders the separate steps." }, { "name": "path",