Since the documentation for GitHub actions is far far behind, I couldn't find anything about it online.
Is there a way for GitHub actions to select the latest tagged version?
If I want to select a version I would do:
uses: MarvinJWendt/run-node-formatter@1.2.0
If I always want the latest commit I would use the master branch
uses: MarvinJWendt/run-node-formatter@master
But what do I have to do, to get the latest tagged version, as the master branch is in development and not stable?