This is an extension to actionlint to add rules and configuration which is more opinionated than the default actionlint.
Simplifies distribution. Run locally by running docker run -v $(pwd):/repo --workdir /repo ghcr.io/wjam/opinionated-actionlint:v0.1.0
or adding the following as GitHub workflow
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ # etc
- run: echo "::add-matcher::.github/actionlint-matcher.json"
- uses: docker://ghcr.io/wjam/opinionated-actionlint:v0.1.0
The only reason I came across for wanting to ignore issues was to format the output, which isn't required.
Using the actionlint-matcher.json
file to turn the output of the tool into GitHub PR error annotations instead of writing a Go template expression is far simpler, and avoids needing to ignore certain issues.
While it makes it easy to create a new action, it's easy to introduce security problems as the script is passed twice - once when the GitHub context expressions are rendered and again when the script is executed.
The solution for this rule is to just create a 'real' action as it's not that difficult and provides benefits such as easier automated testing. Another solution is to use an existing open source action.
Using a Git tag or branch as the action version is standard practice, but means it's possible for the action to change without you being aware of the change. These changes could be a security issue, or could just lead to wasted time when a workflow suddenly no longer works.
Solution for this is to 'pin' the action using a commit SHA, typically with the Git tag as a comment afterwords.
Shell scripts have a similar problem to actions/github-script
in that they will be parsed twice - when expanding the GitHub context expressions and when the script is run. Small shell scripts are too useful to be completely avoided, so an outright ban is impossible.
While it is possible to spot GitHub context expressions that come directly from something the user controls (e.g. PR title), it's impossible to do this for indirect values (e.g. the output of an action which is the directory that was added in this PR).
The solution to this is to pass the values of GitHub context expressions into the script using environment variables.
The default permissions given to a workflow is generally more than most workflow jobs will need.
To solve this, just define what permissions the workflow (or job) actually needs.