# 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 dynamically
default: ${{ github.event.repository.name }}
Improve type of inputs context to grow gradually while checking default values of inputs in workflow_call event.
on:
workflow_call:
inputs:
input1:
type: string
# ERROR: `input2` is not defined yet
default: ${{ inputs.input2 }}
input2:
type: string
# OK: `input1` was already defined above
default: ${{ inputs.input1 }}
Check types of default values of workflow call inputs even if ${{ }} expression is used.
on:
workflow_call:
inputs:
input1:
type: boolean
input2:
type: number
# ERROR: Boolean value cannot be assigned to number
default: ${{ 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.
# 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 dynamically
default: ${{ github.event.repository.name }}
Improve type of inputs context to grow gradually while checking default values of inputs in workflow_call event.
on:
workflow_call:
inputs:
input1:
type: string
# ERROR: `input2` is not defined yet
default: ${{ inputs.input2 }}
input2:
type: string
# OK: `input1` was already defined above
default: ${{ inputs.input1 }}
Check types of default values of workflow call inputs even if ${{ }} expression is used.
on:
workflow_call:
inputs:
input1:
type: boolean
input2:
type: number
# ERROR: Boolean value cannot be assigned to number
default: ${{ 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.
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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@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 github.com/rhysd/actionlint from 1.6.21 to 1.6.22.
Release notes
Sourced from github.com/rhysd/actionlint's releases.
Changelog
Sourced from github.com/rhysd/actionlint's changelog.
... (truncated)
Commits
7fdc963
bump up version to v1.6.22acc6e8c
check type of${{ }}
expression in default value of inputs5656337
updateinputs
context type gradually for checking `on.workflow_call.inputs....89b5c30
fix${{ }}
is not considered when checking constant at `on.workflow_call.in...02831bf
Merge pull request #241 from rhysd/ci/3349658425fccefcb
update generated files bygo generate
on CI56b0b2e
better check to detect the new set-output command is supportedab53b9f
fix the download script is broken on GHE server43f6ff2
Merge branch 'deprecated-commands' (fix #234)8edc27f
describe check for deprecated workflow commands in documentDependabot 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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)