Linda_pp
Linda_pp
Would you provide entire workflow file content so that I can reproduce the error exactly?
Hmm, honestly I don't think dedicated action only for setup for actionlint since we already have the download script. https://github.com/rhysd/actionlint/blob/main/docs/usage.md#use-actionlint-on-github-actions However, this issue gained some upvotes and I understood actually...
> If there was a proper action for this then GitHub native tools like dependabot could be used to bump the action automating the process with a known off the...
Yeah, aliases are actually not considered because I've never used them in my workflows and anyone didn't report that previously. But I agree this should not cause false positive at...
I created a minimal workflow to reproduce this: ```yaml name: Test on: push jobs: test: runs-on: ubuntu-latest steps: - name: Run my-action. uses: my-organization/my-action@main with: &my-action-inputs a: b c: d...
This is very edge case of `if:` usage. `if:` specially allow an expression without `${{ }}` in its body so it allows nesting `${{ }}` but actionlint is not supporting...
Is this guaranteed to be valid? Since `xxx:` is a key of mapping object, order of evaluation of keys is not guaranteed I think. In YAML semantics, order of keys...
I made a question at the forum. https://github.community/t/spec-about-the-order-of-evaluation-of-mapping-values/212889
I'd recommend to use both actionlint and the extension. I'm not using VS Code daily, but the extension seems to provide many useful functions like completion. On the other hand,...
Thank you for suggesting this. Yes, that's what I thought. When I started to make this tool, the `kind` field was enough to identify errors. However, the number of checks...