You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case of the error, please update your actions to the latest version so that they run on the latest node20 runner.
If you're using self-hosted runner and you cannot upgrade your runner to node20 soon, please consider to ignore the error by the paths configuration described below.
Provide the configuration for ignoring errors by regular expressions in actionlint.yml (or actionlint.yaml). Please see the document for more details. (#217, #342)
The paths is a mapping from the file path glob pattern to the corresponding configuration. The ignore configuration is a list of regular expressions to match error messages (similar to the -ignore command line option).
paths:
# This pattern matches any YAML file under the '.github/workflows/' directory..github/workflows/**/*.yaml:
ignore:
# Ignore the specific error from shellcheck
- 'shellcheck reported issue in this script: SC2086:.+'# This pattern only matches '.github/workflows/release.yaml' file..github/workflows/release.yaml:
ignore:
# Ignore errors from the old runner check. This may be useful for (outdated) self-hosted runner environment.
- 'the runner of ".+" action is too old to run on GitHub Actions'
This configuration was not implemented initially because I wanted to keep the configuration as minimal as possible. However, due to several requests for it, the configuration has now been added.
Untrusted inputs check is safely skipped inside specific function calls. (#459, thanks @IlyaGulya)
For example, the following step contains the untrusted input github.head_ref, but it is safe because it's passed to the contains() argument.
Fix the error message was not deterministic when detecting cycles in needs dependencies.
Fix the check for format() function was not applied when the function name contains upper case like Format(). Note that function names in ${{ }} placeholders are case-insensitive.
Update the popular actions data set to the latest.
Links in the README.md now point to the document of the latest version tag instead of HEAD of main branch.
Add Linter.LintStdin method dedicated to linting STDIN instead of handling STDIN in Command.
(Dev) Add new check-checks script to maintain the 'Checks' document. It automatically updates the outputs and playground links for example inputs in the document. It also checks the document is up-to-date on CI. Please read the document for more details.