diff --git a/content/actions/reference/workflows-and-actions/contexts.md b/content/actions/reference/workflows-and-actions/contexts.md index 6e9844669b9b..0d17c0174731 100644 --- a/content/actions/reference/workflows-and-actions/contexts.md +++ b/content/actions/reference/workflows-and-actions/contexts.md @@ -98,7 +98,7 @@ The following table lists the restrictions on where each context and special fun | `jobs..name` | `github, needs, strategy, matrix, vars, inputs` | None | | `jobs..outputs.` | `github, needs, strategy, matrix, job, runner, env, vars, secrets, steps, inputs` | None | | `jobs..runs-on` | `github, needs, strategy, matrix, vars, inputs` | None | -| `jobs..secrets.` | `github, needs, strategy, matrix, secrets, inputs, vars` | None | +| `jobs..secrets.` | `github, needs, strategy, matrix, secrets, inputs, vars` | None | | `jobs..services` | `github, needs, strategy, matrix, vars, inputs` | None | | `jobs..services..credentials` | `github, needs, strategy, matrix, env, vars, secrets, inputs` | None | | `jobs..services..env.` | `github, needs, strategy, matrix, job, runner, env, vars, secrets, inputs` | None | @@ -112,7 +112,7 @@ The following table lists the restrictions on where each context and special fun | `jobs..steps.working-directory` | `github, needs, strategy, matrix, job, runner, env, vars, secrets, steps, inputs` | `hashFiles` | | `jobs..strategy` | `github, needs, vars, inputs` | None | | `jobs..timeout-minutes` | `github, needs, strategy, matrix, vars, inputs` | None | -| `jobs..with.` | `github, needs, strategy, matrix, inputs, vars` | None | +| `jobs..with.` | `github, needs, strategy, matrix, inputs, vars` | None | | `on.workflow_call.inputs..default` | `github, inputs, vars` | None | | `on.workflow_call.outputs..value` | `github, jobs, vars, inputs` | None | diff --git a/content/actions/reference/workflows-and-actions/workflow-syntax.md b/content/actions/reference/workflows-and-actions/workflow-syntax.md index d2ddc02b6bfd..c400c17dc633 100644 --- a/content/actions/reference/workflows-and-actions/workflow-syntax.md +++ b/content/actions/reference/workflows-and-actions/workflow-syntax.md @@ -1207,7 +1207,7 @@ jobs: A pair consisting of a string identifier for the input and the value of the input. The identifier must match the name of an input defined by [`on.workflow_call.inputs.`](/actions/creating-actions/metadata-syntax-for-github-actions#inputsinput_id) in the called workflow. The data type of the value must match the type defined by [`on.workflow_call.inputs..type`](#onworkflow_callinputsinput_idtype) in the called workflow. -Allowed expression contexts: `github`, and `needs`. +Allowed expression contexts: `github`, `needs`, `strategy`, `matrix`, `inputs`, and `vars`. ## `jobs..secrets` @@ -1265,7 +1265,7 @@ jobs: A pair consisting of a string identifier for the secret and the value of the secret. The identifier must match the name of a secret defined by [`on.workflow_call.secrets.`](#onworkflow_callsecretssecret_id) in the called workflow. -Allowed expression contexts: `github`, `needs`, and `secrets`. +Allowed expression contexts: `github`, `needs`, `strategy`, `matrix`, `secrets`, `inputs`, and `vars`. ## Filter pattern cheat sheet