rhysd / actionlint

:octocat: Static checker for GitHub Actions workflow files
https://rhysd.github.io/actionlint/
MIT License
2.53k stars 151 forks source link

`dorny/paths-filter@v3` added a new option #416

Open jmeickle-theaiinstitute opened 1 month ago

jmeickle-theaiinstitute commented 1 month ago

This is not picked up by actionlint which spuriously fails a valid workflow:

GitHub Actions / actionlint
input "predicate-quantifier" is not defined in action "dorny/paths-filter@v3". available inputs are "base", "filters", "initial-fetch-depth", "list-files", "ref", "token", "working-directory"

It was added in their most recent release, v3.0.2: https://github.com/dorny/paths-filter/releases/tag/v3.0.2 Which is for some reason marked as a patch despite adding a new feature.

rhysd commented 1 month ago

actionlint cannot know the input because it is not listed in the manifest.

rhysd commented 1 month ago

I created a PR there. Meanwhile, please ignore the error by -ignore '"predicate-quantifier"'.

jmeickle-theaiinstitute commented 1 month ago

Thank you, appreciate the fast response + awesome project!