We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The working-directory option can only be used in run steps, but not in actions (i.e., not with uses).
working-directory
uses
For example, the following workflow should fail analysis:
on: workflow_dispatch: jobs: foo: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 working-directory: foo/
But it currently succeeds.
I think it'd be useful to add this check. Thanks for the great tool, btw!
The text was updated successfully, but these errors were encountered:
a1c9bd5
Thanks. It was bug of actionlint.
Sorry, something went wrong.
This was fixed in v1.6.17.
add more ok tests for #151 and #207
6805a8e
No branches or pull requests
The
working-directory
option can only be used in run steps, but not in actions (i.e., not withuses
).For example, the following workflow should fail analysis:
But it currently succeeds.
I think it'd be useful to add this check. Thanks for the great tool, btw!
The text was updated successfully, but these errors were encountered: