You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# ERROR: This format of 'set-output' workflow command was deprecated
- run: echo '::set-output name=foo::bar'
Fix that ${{ }} expression at on.workflow_call.inputs.<id>.default caused an error. (#235)
on:
workflow_call:
inputs:
project:
type: string# OK: The default value is generated dynamicallydefault: ${{ github.event.repository.name }}
Improve type of inputs context to grow gradually while checking inputs in workflow_call event.
on:
workflow_call:
inputs:
input1:
type: string# ERROR: `input2` is not defined yetdefault: ${{ inputs.input2 }}input2:
type: string# OK: `input1` was already defined abovedefault: ${{ inputs.input1 }}
Check types of default values of workflow call inputs even if ${{ }} expression is used.
on:
workflow_call:
inputs:
input1:
type: booleaninput2:
type: number# ERROR: Boolean value cannot be assigned to numberdefault: ${{ inputs.input1 }}
Fix the download script is broken since GHE server does not support the new set-output format yet. (#240)
Replace the deprecated set-output workflow command in our own workflows. (#239, thanks @Mrtenz)
Popular actions data set was updated to the latest as usual.