This document describes all checks done by actionlint with example inputs, outputs, and playground links.
List of checks:
- Unexpected keys
- Missing required keys or key duplicates
- Unexpected empty mappings
- Unexpected mapping values
- Syntax check for expression
${{ }}
- Type checks for expression syntax in
${{ }}
- Contexts and built-in functions
- Contextual typing for
steps.<step_id>
objects - Contextual typing for
matrix
object - Contextual typing for
needs
object - shellcheck integration for
run:
- pyflakes integration for
run:
- Script injection by potentially untrusted inputs
- Job dependencies validation
- Matrix values
- Webhook events validation
- Workflow dispatch event validation
- Glob filter pattern syntax validation
- CRON syntax check at
schedule:
- Runner labels
- Action format in
uses:
- Local action inputs validation at
with:
- Popular action inputs validation at
with:
- Shell name validation at
shell:
- Job ID and step ID uniqueness
- Hardcoded credentials
- Environment variable names
- Permissions
- Reusable workflows
- ID naming convention
- Contexts and special functions availability
- Deprecated workflow commands
- Conditions always evaluated to true at
if:
Note that actionlint focuses on catching mistakes in workflow files. If you want some general code style checks, please consider using a general YAML checker like yamllint.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
# ERROR: Typo of `defaults:`
default:
run:
working-directory: /path/to/dir
steps:
- run: echo hello
# ERROR: `shell:` must be in lower case
Shell: bash
Output:
test.yaml:6:5: unexpected key "default" for "job" section. expected one of "concurrency", "container", "continue-on-error", "defaults", "env", "environment", "if", "name", "needs", "outputs", "permissions", "runs-on", "secrets", "services", "steps", "strategy", "timeout-minutes", "uses", "with" [syntax-check]
|
6 | default:
| ^~~~~~~~
test.yaml:12:9: unexpected key "Shell" for "step" section. expected one of "continue-on-error", "env", "id", "if", "name", "run", "shell", "timeout-minutes", "uses", "with", "working-directory" [syntax-check]
|
12 | Shell: bash
| ^~~~~~
Workflow syntax defines what keys can be defined in which mapping object. When unknown key is defined, it makes the workflow run fail.
actionlint can detect unexpected keys while parsing workflow syntax and report them as an error.
Key names are basically case sensitive (though some specific key names are case insensitive). This check is useful to catch case-sensitivity mistakes.
Example input:
on: push
jobs:
test:
strategy:
# ERROR: Matrix name is duplicated. These keys are case insensitive
matrix:
version_name: [v1, v2]
VERSION_NAME: [V1, V2]
# ERROR: runs-on is missing
steps:
- run: echo 'hello'
Output:
test.yaml:3:3: "runs-on" section is missing in job "test" [syntax-check]
|
3 | test:
| ^~~~~
test.yaml:8:9: key "version_name" is duplicated in "matrix" section. previously defined at line:7,col:9. note that key names are case insensitive [syntax-check]
|
8 | VERSION_NAME: [V1, V2]
| ^~~~~~~~~~~~~
Some mappings must include specific keys. For example, job mappings must include runs-on:
and steps:
.
And duplicate keys are not allowed. In workflow syntax, comparing some keys is case insensitive. For example, the job ID
test
in lower case and the job ID TEST
in upper case are not able to exist in the same workflow.
actionlint checks these missing required keys and duplicate keys while parsing, and reports an error.
Example input:
on: push
jobs:
Output:
test.yaml:2:6: "jobs" section should not be empty. please remove this section if it's unnecessary [syntax-check]
|
2 | jobs:
| ^
Some mappings and sequences should not be empty. For example, steps:
must include at least one step.
actionlint checks such mappings and sequences are not empty while parsing, and reports the empty mappings and sequences as an error.
Example input:
on: push
jobs:
test:
strategy:
# ERROR: Boolean value "true" or "false" is expected
fail-fast: off
# ERROR: Integer value is expected
max-parallel: 1.5
runs-on: ubuntu-latest
steps:
- run: sleep 200
# ERROR: Float value is expected
timeout-minutes: two minutes
Output:
test.yaml:6:18: expecting a single ${{...}} expression or boolean literal "true" or "false", but found plain text node [syntax-check]
|
6 | fail-fast: off
| ^~~
test.yaml:8:21: expected scalar node for integer value but found scalar node with "!!float" tag [syntax-check]
|
8 | max-parallel: 1.5
| ^~~
test.yaml:13:26: expecting a single ${{...}} expression or float number literal, but found plain text node [syntax-check]
|
13 | timeout-minutes: two minutes
| ^~~
Some mapping values are restricted to some constant strings. Several mapping values expect boolean value like true
or
false
. And some mapping values expect integer or floating number values.
actionlint checks such constant strings are used properly while parsing and reports an error when an unexpected value is specified.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# " is not available for string literal delimiter
- run: echo '${{ "hello" }}'
# + operator does not exist
- run: echo '${{ 1 + 1 }}'
# Missing ')' paren
- run: echo "${{ toJson(hashFiles('**/lock', '**/cache/') }}"
# unexpected end of input
- run: echo '${{ github.event. }}'
Output:
test.yaml:7:24: got unexpected character '"' while lexing expression, expecting 'a'..'z', 'A'..'Z', '_', '0'..'9', ''', '}', '(', ')', '[', ']', '.', '!', '<', '>', '=', '&', '|', '*', ',', ' '. do you mean string literals? only single quotes are available for string delimiter [expression]
|
7 | - run: echo '${{ "hello" }}'
| ^~~~~~~
test.yaml:9:26: got unexpected character '+' while lexing expression, expecting 'a'..'z', 'A'..'Z', '_', '0'..'9', ''', '}', '(', ')', '[', ']', '.', '!', '<', '>', '=', '&', '|', '*', ',', ' ' [expression]
|
9 | - run: echo '${{ 1 + 1 }}'
| ^
test.yaml:11:65: unexpected end of input while parsing arguments of function call. expecting ",", ")" [expression]
|
11 | - run: echo "${{ toJson(hashFiles('**/lock', '**/cache/') }}"
| ^~~
test.yaml:13:38: unexpected end of input while parsing object property dereference like 'a.b' or array element dereference like 'a.*'. expecting "IDENT", "*" [expression]
|
13 | - run: echo '${{ github.event. }}'
| ^~~
actionlint lexes and parses expression in ${{ }}
following the expression syntax document. It can detect
many syntax errors like invalid characters, missing parens, unexpected end of input, ...
actionlint checks types of expressions in ${{ }}
placeholders of templates. The following types are supported by the type
checker.
Type | Description | Notation |
---|---|---|
Any | Any value like any type in TypeScript. Fallback type when a value can no longer be typed |
any |
Number | Number value (integer or float) | number |
Bool | Boolean value | bool |
String | String value | string |
Null | Type of null value |
null |
Array | Array of specific type elements | array<T> |
Loose object | Object which can contain any properties | object |
Strict object | Object whose properties are strictly typed | {prop1: T1, prop2: T2} |
Map object | Object who has specific type values like env context |
{string => T} |
Type check by actionlint is more strict than GitHub Actions runtime.
- Only
any
andnumber
are allowed to be converted to string implicitly - Implicit conversion to
number
is not allowed - Object, array, and null are not allowed to be evaluated at
${{ }}
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# ERROR: `env` is object. Index access object is invalid
- run: echo '${{ env[0] }}'
# ERROR: Properties in objects are strongly typed. Missing property can be caught
- run: echo '${{ job.container.os }}'
# ERROR: `github.repository` is string. Trying to access .owner property is invalid
- run: echo '${{ github.repository.owner }}'
# ERROR: Objects, arrays and null should not be evaluated at ${{ }} since the outputs are useless
- run: echo '${{ env }}'
Output:
test.yaml:7:28: property access of object must be type of string but got "number" [expression]
|
7 | - run: echo '${{ env[0] }}'
| ^~
test.yaml:9:24: property "os" is not defined in object type {id: string; network: string} [expression]
|
9 | - run: echo '${{ job.container.os }}'
| ^~~~~~~~~~~~~~~~
test.yaml:11:24: receiver of object dereference "owner" must be type of object but got "string" [expression]
|
11 | - run: echo '${{ github.repository.owner }}'
| ^~~~~~~~~~~~~~~~~~~~~~~
test.yaml:13:20: object, array, and null values should not be evaluated in template with ${{ }} but evaluating the value of type {string => string} [expression]
|
13 | - run: echo '${{ env }}'
| ^~~
Type checks for expression syntax in ${{ }}
are done by semantics checker. Note that actual type checks by GitHub Actions
runtime is loose.
Any object value can be assigned into string value as string 'Object'
. echo '${{ env }}'
will be replaced with
echo 'Object'
. And an array can also be converted into 'Array'
string. Such loose conversions are bugs in almost all cases.
actionlint checks types more strictly. actionlint checks values evaluated at ${{ }}
are not object (replaced with string
'Object'
), array (replaced with string 'Array'
), nor null (replaced with string ''
). If you want to check a content of
object or array, use toJSON()
function.
echo '${{ toJSON(github.event) }}'
There are two types of object types internally. One is an object which is strict for properties, which causes a type error
when trying to access unknown properties. And another is an object which is not strict for properties, which allows to access
unknown properties. In the case, accessing unknown property is typed as any
.
When the type check cannot be done statically, the type is deduced to any
(e.g. return type of toJSON()
).
As special case of ${{ }}
, it can be used for expanding object and array values.
Example input:
on: push
jobs:
test:
strategy:
matrix:
env_string:
- 'FOO=BAR'
- 'FOO=PIYO'
env_object:
- FOO: BAR
- FOO: PIYO
runs-on: ubuntu-latest
steps:
# OK: Expanding object at 'env:' section
- run: echo "$FOO"
env: ${{ matrix.env_object }}
# ERROR: String value cannot be expanded as object
- run: echo "$FOO"
env: ${{ matrix.env_string }}
Output:
test.yaml:19:14: type of expression at "env" must be object but found type string [expression]
|
19 | env: ${{ matrix.env_string }}
| ^~~
In above example, environment variables mapping is expanded at env:
section. actionlint checks type of the expanded value.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# Access undefined context
- run: echo '${{ unknown_context }}'
# Access undefined property of context
- run: echo '${{ github.events }}'
# Calling undefined function (start's'With is correct)
- run: echo "${{ startWith('hello, world', 'lo,') }}"
# Wrong number of arguments
- run: echo "${{ startsWith('hello, world') }}"
# Wrong type of parameter
- run: echo "${{ startsWith('hello, world', github.event) }}"
# Function overloads can be handled properly. contains() has string version and array version
- run: echo "${{ contains('hello, world', 'lo,') }}"
- run: echo "${{ contains(github.event.labels.*.name, 'enhancement') }}"
# format() has a special check for formatting string
- run: echo "${{ format('{0}{1}', 1, 2, 3) }}"
Output:
test.yaml:7:24: undefined variable "unknown_context". available variables are "env", "github", "job", "matrix", "needs", "runner", "secrets", "steps", "strategy", "vars" [expression]
|
7 | - run: echo '${{ unknown_context }}'
| ^~~~~~~~~~~~~~~
test.yaml:9:24: property "events" is not defined in object type {workspace: string; env: string; event_name: string; event_path: string; ...} [expression]
|
9 | - run: echo '${{ github.events }}'
| ^~~~~~~~~~~~~
test.yaml:11:24: undefined function "startWith". available functions are "always", "cancelled", "contains", "endswith", "failure", "format", "fromjson", "hashfiles", "join", "startswith", "success", "tojson" [expression]
|
11 | - run: echo "${{ startWith('hello, world', 'lo,') }}"
| ^~~~~~~~~~~~~~~~~
test.yaml:13:24: number of arguments is wrong. function "startsWith(string, string) -> bool" takes 2 parameters but 1 arguments are given [expression]
|
13 | - run: echo "${{ startsWith('hello, world') }}"
| ^~~~~~~~~~~~~~~~~~
test.yaml:15:51: 2nd argument of function call is not assignable. "object" cannot be assigned to "string". called function type is "startsWith(string, string) -> bool" [expression]
|
15 | - run: echo "${{ startsWith('hello, world', github.event) }}"
| ^~~~~~~~~~~~~
test.yaml:20:24: format string "{0}{1}" does not contain placeholder {2}. remove argument which is unused in the format string [expression]
|
20 | - run: echo "${{ format('{0}{1}', 1, 2, 3) }}"
| ^~~~~~~~~~~~~~~~
Contexts and built-in functions are strongly typed. Typos in property access of contexts and function names can be checked. And invalid function calls like wrong number of arguments or type mismatch at parameter also can be checked thanks to type checker.
The semantics checker can properly handle that
- some functions are overloaded (e.g.
contains(str, substr)
andcontains(array, item)
) - some parameters are optional (e.g.
join(strings, sep)
andjoin(strings)
) - some parameters are repeatable (e.g.
hashFiles(file1, file2, ...)
)
In addition, format()
function has a special check for placeholders in the first parameter which represents the formatting
string.
Note that context names and function names are case insensitive. For example, toJSON
and toJson
are the same function.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
outputs:
# Step outputs can be used in job outputs since this section is evaluated after all steps were run
foo: '${{ steps.get_value.outputs.name }}'
steps:
# ERROR: Access undefined step outputs
- run: echo '${{ steps.get_value.outputs.name }}'
# Outputs are set here
- run: echo "foo=value" >> "$GITHUB_OUTPUT"
id: get_value
# OK
- run: echo '${{ steps.get_value.outputs.name }}'
# OK
- run: echo '${{ steps.get_value.conclusion }}'
other:
runs-on: ubuntu-latest
steps:
# ERROR: Access undefined step outputs. Step objects are job-local
- run: echo '${{ steps.get_value.outputs.name }}'
Output:
test.yaml:10:24: property "get_value" is not defined in object type {} [expression]
|
10 | - run: echo '${{ steps.get_value.outputs.name }}'
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:22:24: property "get_value" is not defined in object type {} [expression]
|
22 | - run: echo '${{ steps.get_value.outputs.name }}'
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
Outputs of step can be accessed via steps.<step_id>
objects. The steps
context is dynamic:
- Accessing the outputs before running the step causes
null
- Outputs of steps only in the job can be accessed. It cannot access steps across jobs
It is a common mistake to access the wrong step outputs since people often forget to fix placeholders on copying&pasting steps. actionlint can catch invalid accesses to step outputs and reports them as errors.
When the outputs are set by popular actions, the outputs object is more strictly typed.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# ERROR: The step is not run yet at this point
- run: echo ${{ steps.cache.outputs.cache-hit }}
# actions/cache sets cache-hit output
- uses: actions/cache@v3
id: cache
with:
key: ${{ hashFiles('**/*.lock') }}
path: ./packages
# OK
- run: echo ${{ steps.cache.outputs.cache-hit }}
# ERROR: Typo at output name
- run: echo ${{ steps.cache.outputs.cache_hit }}
Output:
test.yaml:8:23: property "cache" is not defined in object type {} [expression]
|
8 | - run: echo ${{ steps.cache.outputs.cache-hit }}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:18:23: property "cache_hit" is not defined in object type {cache-hit: string} [expression]
|
18 | - run: echo ${{ steps.cache.outputs.cache_hit }}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In the above example, actions/cache action sets cache-hit
output so that the following steps can know
whether the cache was hit or not. At line 8, the cache action is not run yet. So cache
property does not exist in the
steps
context yet. On running the step whose ID is cache
, steps.cache
object is typed as
{outputs: {cache-hit: any}, conclusion: string, outcome: string}
. At line 18, the expression has a typo in the output
name. actionlint can check it because properties of steps.cache.outputs
are typed.
This strict typing for outputs is also applied to local actions. Let's say we have the following local action.
name: 'My action with output'
author: 'rhysd <https://rhysd.github.io>'
description: 'my action with outputs'
outputs:
some_value:
description: some value returned from this action
runs:
using: 'node14'
main: 'index.js'
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# ERROR: The step is not yet run
- run: echo ${{ steps.my_action.outputs.some_value }}
# The action runs here and sets its outputs
- uses: ./.github/actions/my-action-with-output
id: my_action
# OK
- run: echo ${{ steps.my_action.outputs.some_value }}
# ERROR: No output named 'some-value' (typo)
- run: echo ${{ steps.my_action.outputs.some-value }}
Output:
test.yaml:8:23: property "my_action" is not defined in object type {} [expression]
|
8 | - run: echo ${{ steps.my_action.outputs.some_value }}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:15:23: property "some-value" is not defined in object type {some_value: string} [expression]
|
15 | - run: echo ${{ steps.my_action.outputs.some-value }}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The 'My action with output' action defines one output some_value
. The property is typed at steps.my_action.outputs
object
so that actionlint can check incorrect property accesses like a typo in the output name.
Example input:
on: push
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [14, 15]
package:
- name: 'foo'
optional: true
- name: 'bar'
optional: false
include:
- node: 15
npm: 7.5.4
runs-on: ${{ matrix.os }}
steps:
# Access undefined matrix value
- run: echo '${{ matrix.platform }}'
# Matrix value is strongly typed. Below line causes an error since matrix.package is {name: string, optional: bool}
- run: echo '${{ matrix.package.dev }}'
# OK
- run: |
echo 'os: ${{ matrix.os }}'
echo 'node version: ${{ matrix.node }}'
echo 'package: ${{ matrix.package.name }} (optional=${{ matrix.package.optional }})'
# Additional matrix values in 'include:' are supported
- run: echo 'npm version is specified'
if: ${{ contains(matrix.npm, '7.5') }}
test2:
runs-on: ubuntu-latest
steps:
# Matrix values in other job is not accessible
- run: echo '${{ matrix.os }}'
Output:
test.yaml:19:24: property "platform" is not defined in object type {os: string; node: number; package: {name: string; optional: bool}; npm: string} [expression]
|
19 | - run: echo '${{ matrix.platform }}'
| ^~~~~~~~~~~~~~~
test.yaml:21:24: property "dev" is not defined in object type {name: string; optional: bool} [expression]
|
21 | - run: echo '${{ matrix.package.dev }}'
| ^~~~~~~~~~~~~~~~~~
test.yaml:34:24: property "os" is not defined in object type {} [expression]
|
34 | - run: echo '${{ matrix.os }}'
| ^~~~~~~~~
Types of matrix
context are contextually checked by the semantics checker. Type of matrix values in matrix:
section
is deduced from element values of its array. When the matrix value is an array of objects, objects' properties are checked
strictly like package.name
in above example.
When a type of the array elements is not persistent, the type of the matrix value falls back to any
.
strategy:
matrix:
foo:
- 'string value'
- 42
- {aaa: true, bbb: null}
bar:
- [42]
- [true]
- [{aaa: true, bbb: null}]
- []
steps:
# matrix.foo is any type value
- run: echo ${{ matrix.foo }}
# matrix.bar is array<any> type value
- run: echo ${{ matrix.bar[0] }}
Example input:
on: push
jobs:
install:
outputs:
installed: '...'
runs-on: ubuntu-latest
steps:
- run: echo 'install something'
prepare:
outputs:
prepared: '...'
runs-on: ubuntu-latest
steps:
- run: echo 'parepare something'
# ERROR: Outputs in other job is not accessible
- run: echo '${{ needs.prepare.outputs.prepared }}'
build:
needs: [install, prepare]
outputs:
built: '...'
runs-on: ubuntu-latest
steps:
# OK: Accessing job results
- run: echo 'build something with ${{ needs.install.outputs.installed }} and ${{ needs.prepare.outputs.prepared }}'
# ERROR: Accessing undefined output causes an error
- run: echo '${{ needs.install.outputs.foo }}'
# ERROR: Accessing undefined job ID
- run: echo '${{ needs.some_job }}'
other:
runs-on: ubuntu-latest
steps:
# ERROR: Cannot access outputs across jobs
- run: echo '${{ needs.build.outputs.built }}'
Output:
test.yaml:16:24: property "prepare" is not defined in object type {} [expression]
|
16 | - run: echo '${{ needs.prepare.outputs.prepared }}'
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:26:24: property "foo" is not defined in object type {installed: string} [expression]
|
26 | - run: echo '${{ needs.install.outputs.foo }}'
| ^~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:28:24: property "some_job" is not defined in object type {install: {outputs: {installed: string}; result: string}; prepare: {outputs: {prepared: string}; result: string}} [expression]
|
28 | - run: echo '${{ needs.some_job }}'
| ^~~~~~~~~~~~~~
test.yaml:33:24: property "build" is not defined in object type {} [expression]
|
33 | - run: echo '${{ needs.build.outputs.built }}'
| ^~~~~~~~~~~~~~~~~~~~~~~~~
Job dependencies can be defined at needs:
. A job runs after all jobs defined in needs:
are done.
Outputs from the jobs can be accessed only from jobs following them via needs
context.
actionlint defines a type of needs
variable contextually by looking at each job's outputs:
section and needs:
section.
shellcheck integration for run:
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo $FOO
test-win:
runs-on: windows-latest
steps:
# Shell on Windows is PowerShell by default.
# shellcheck is not run in this case.
- run: echo $FOO
# This script is run with bash due to 'shell:' configuration
- run: echo $FOO
shell: bash
Output:
test.yaml:6:9: shellcheck reported issue in this script: SC2086:info:1:6: Double quote to prevent globbing and word splitting [shellcheck]
|
6 | - run: echo $FOO
| ^~~~
test.yaml:14:9: shellcheck reported issue in this script: SC2086:info:1:6: Double quote to prevent globbing and word splitting [shellcheck]
|
14 | - run: echo $FOO
| ^~~~
shellcheck is a famous linter for ShellScript. actionlint runs shellcheck for scripts at run:
step in a workflow.
For installing shellcheck, see the official installation document.
actionlint detects which shell is used to run the scripts following the documentation. On Linux or macOS the
default shell is bash
, and on Windows it is pwsh
. Shell can be configured by shell:
configuration at a workflow
level or job level. Each step can configure shell to run scripts by shell:
.
In the above example output, SC2086:info:1:6:
means that shellcheck reported SC2086 rule violation and the location is at
line 1, column 6. Note that the location is relative to the script of the run:
section.
actionlint remembers the default shell and checks what OS the job runs on. Only when the shell is bash
or sh
, actionlint
applies shellcheck to scripts.
By default, actionlint checks if shellcheck
command exists in your system and uses it when it is found. The -shellcheck
option on running actionlint
command specifies the executable path of shellcheck. Setting empty string by shellcheck=
disables shellcheck integration explicitly.
Since both ${{ }}
expression syntax and ShellScript's variable access $FOO
use $
, the remaining ${{ }}
confuses
shellcheck. To avoid it, actionlint replaces ${{ }}
with underscores. For example echo '${{ matrix.os }}'
is replaced
with echo '________________'
.
Some shellcheck rules conflict with the ${{ }}
expression syntax. To avoid errors due to the syntax, SC1091, SC2050,
SC2194, SC2154, SC2157 are disabled.
When what shell is used cannot be determined statically, actionlint assumes shell: bash
optimistically. For example,
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Show file content
run: Get-Content -Path xxx\yyy.txt
if: ${{ matrix.os == 'windows-latest' }}
The 'Show file content' script is only run by pwsh
due to matrix.os == 'windows-latest'
guard. However actionlint does not
know that. It checks the script with shellcheck and it'd probably cause a false-positive (due to file separator). This kind of
false positives can be avoided by showing the shell name explicitly. It is also better in terms of maintenance of the workflow.
- name: Show file content
run: Get-Content -Path xxx\yyy.txt
if: ${{ matrix.os == 'windows-latest' }}
shell: pwsh
pyflakes integration for run:
Example input:
on: push
jobs:
linux:
runs-on: ubuntu-latest
steps:
# Yay! No error
- run: print('${{ runner.os }}')
shell: python
# ERROR: Undefined variable
- run: print(hello)
shell: python
linux2:
runs-on: ubuntu-latest
defaults:
run:
# Run script with Python by default
shell: python
steps:
- run: |
import sys
for sys in ['system1', 'system2']:
print(sys)
- run: |
from time import sleep
print(100)
Output:
test.yaml:10:9: pyflakes reported issue in this script: 1:7: undefined name 'hello' [pyflakes]
|
10 | - run: print(hello)
| ^~~~
test.yaml:19:9: pyflakes reported issue in this script: 2:5: import 'sys' from line 1 shadowed by loop variable [pyflakes]
|
19 | - run: |
| ^~~~
test.yaml:23:9: pyflakes reported issue in this script: 1:1: 'time.sleep' imported but unused [pyflakes]
|
23 | - run: |
| ^~~~
Python script can be written in run:
when shell: python
is configured.
pyflakes is a famous linter for Python. It is suitable for linting small code like scripts at run:
since it focuses
on finding mistakes (not a code style issue) and tries to make false positives as minimal as possible. Install pyflakes
by pip install pyflakes
.
actionlint runs pyflakes for scripts at run:
steps in a workflow and reports errors found by pyflakes. actionlint detects
Python scripts in a workflow by checking shell: python
at each step and defaults:
configurations at workflows and jobs.
By default, actionlint checks if pyflakes
command exists in your system and uses it when found. The -pyflakes
option
of actionlint
command allows to specify the executable path of pyflakes. Setting empty string by pyflakes=
disables
pyflakes integration explicitly.
Since both ${{ }}
expression syntax is invalid as Python, remaining ${{ }}
might confuse pyflakes. To avoid it,
actionlint replaces ${{ }}
with underscores. For example print('${{ matrix.os }}')
is replaced with
print('________________')
.
Example input:
name: Test
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Print pull request title
# ERROR: Using the potentially untrusted input can cause script injection
run: echo '${{ github.event.pull_request.title }}'
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.TOKEN }}
# This is OK because action input is not evaluated by shell
stale-pr-message: ${{ github.event.pull_request.title }} was closed
- uses: actions/github-script@v4
with:
# ERROR: Using the potentially untrusted input can cause script injection
script: console.log('${{ github.event.head_commit.author.name }}')
- name: Get comments
# ERROR: Accessing untrusted inputs via `.*` object filter; bodies of comment, review, and review_comment
run: echo '${{ toJSON(github.event.*.body) }}'
Output:
test.yaml:10:24: "github.event.pull_request.title" is potentially untrusted. avoid using it directly in inline scripts. instead, pass it through an environment variable. see https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions for more details [expression]
|
10 | run: echo '${{ github.event.pull_request.title }}'
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:19:36: "github.event.head_commit.author.name" is potentially untrusted. avoid using it directly in inline scripts. instead, pass it through an environment variable. see https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions for more details [expression]
|
19 | script: console.log('${{ github.event.head_commit.author.name }}')
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:22:31: object filter extracts potentially untrusted properties "github.event.comment.body", "github.event.discussion.body", "github.event.issue.body", "github.event.pull_request.body", "github.event.review.body", "github.event.review_comment.body". avoid using the value directly in inline scripts. instead, pass the value through an environment variable. see https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions for more details [expression]
|
22 | run: echo '${{ toJSON(github.event.*.body) }}'
| ^~~~~~~~~~~~~~~~~~~~
Since ${{ }}
placeholders are evaluated and replaced directly by GitHub Actions runtime, you need to use them carefully in
inline scripts at run:
. For example, if we have step as follows,
- run: echo 'issue ${{github.event.issue.title}}'
an attacker can create a new issue with the title '; malicious_command ...
, and the inline script will run
echo 'issue'; malicious_command ...
in your workflow. The remediation of such script injection is passing potentially untrusted
inputs via environment variables. See the official document for more details.
- run: echo "issue ${TITLE}"
env:
TITLE: ${{github.event.issue.title}}
actionlint recognizes the following inputs as potentially untrusted and checks your inline scripts at run:
. When they are used
directly in a script, actionlint will report it as an error.
github.event.issue.title
github.event.issue.body
github.event.pull_request.title
github.event.pull_request.body
github.event.comment.body
github.event.review.body
github.event.review_comment.body
github.event.pages.*.page_name
github.event.commits.*.message
github.event.head_commit.message
github.event.head_commit.author.email
github.event.head_commit.author.name
github.event.commits.*.author.email
github.event.commits.*.author.name
github.event.pull_request.head.ref
github.event.pull_request.head.label
github.event.pull_request.head.repo.default_branch
github.head_ref
Not only direct access to the untrusted properties, actionlint also detects those properties indirectly accessed via
object filter syntax. For example, github.event.*.body
collects all body
properties in child objects
of github.event
as array. Those properties include untrusted inputs like github.event.comment.body
,
github.event.pull_request.body
, ...
# Echo list of github.event.comment.body, github.event.pull_request.body, ...
echo '${{ toJSON(github.event.*.body) }}'
Instead, you should store the JSON string in an environment variable:
- run: echo "${BODIES}"
env:
BODIES: '${{ toJSON(github.event.*.body) }}'
At last, the popular action actions/github-script has the same issue in its script
input. actionlint also
checks the input.
Example input:
on: push
jobs:
prepare:
needs: [build]
runs-on: ubuntu-latest
steps:
- run: echo 'prepare'
install:
needs: [prepare]
runs-on: ubuntu-latest
steps:
- run: echo 'install'
build:
needs: [install]
runs-on: ubuntu-latest
steps:
- run: echo 'build'
Output:
test.yaml:8:3: cyclic dependencies in "needs" configurations of jobs are detected. detected cycle is "install" -> "prepare", "prepare" -> "build", "build" -> "install" [job-needs]
|
8 | install:
| ^~~~~~~~
Job dependencies can be defined at needs:
. If cyclic dependencies exist, jobs never start to run. actionlint
detects cyclic dependencies in needs:
sections of jobs and reports it as an error.
actionlint also detects undefined jobs and duplicate jobs in needs:
section.
Example input:
on: push
jobs:
foo:
needs: [bar, BAR]
runs-on: ubuntu-latest
steps:
- run: echo 'hi'
bar:
needs: [unknown]
runs-on: ubuntu-latest
steps:
- run: echo 'hi'
Output:
test.yaml:4:18: job ID "BAR" duplicates in "needs" section. note that job ID is case insensitive [job-needs]
|
4 | needs: [bar, BAR]
| ^~~~
test.yaml:8:3: job "bar" needs job "unknown" which does not exist in this workflow [job-needs]
|
8 | bar:
| ^~~~
Example input:
on: push
jobs:
test:
strategy:
matrix:
node: [10, 12, 14, 14]
os: [ubuntu-latest, macos-latest]
exclude:
- node: 13
os: ubuntu-latest
- node: 10
platform: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- run: echo ...
Output:
test.yaml:6:28: duplicate value "14" is found in matrix "node". the same value is at line:6,col:24 [matrix]
|
6 | node: [10, 12, 14, 14]
| ^~~
test.yaml:9:19: value "13" in "exclude" does not match in matrix "node" combinations. possible values are "10", "12", "14", "14" [matrix]
|
9 | - node: 13
| ^~
test.yaml:12:13: "platform" in "exclude" section does not exist in matrix. available matrix configurations are "node", "os" [matrix]
|
12 | platform: ubuntu-latest
| ^~~~~~~~~
matrix:
defines combinations of multiple values. Nested include:
and exclude:
can add/remove specific
combination of matrix values. actionlint checks
- values in
exclude:
appear inmatrix:
orinclude:
- duplicate variations of matrix values
Example input:
on:
push:
# ERROR: Incorrect filter. 'branches' is correct
branch: foo
# ERROR: Both 'paths' and 'paths-ignore' filters cannot be used for the same event
paths: path/to/foo
paths-ignore: path/to/foo
issues:
# ERROR: Incorrect type. 'opened' is correct
types: created
release:
# ERROR: 'tags' filter is not available for 'release' event
tags: v*.*.*
# ERROR: Unknown event name
pullreq:
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo ...
Output:
test.yaml:4:5: unexpected key "branch" for "push" section. expected one of "branches", "branches-ignore", "paths", "paths-ignore", "tags", "tags-ignore", "types", "workflows" [syntax-check]
|
4 | branch: foo
| ^~~~~~~
test.yaml:7:5: both "paths" and "paths-ignore" filters cannot be used for the same event "push". note: use '!' to negate patterns [events]
|
7 | paths-ignore: path/to/foo
| ^~~~~~~~~~~~~
test.yaml:10:12: invalid activity type "created" for "issues" Webhook event. available types are "assigned", "closed", "deleted", "demilestoned", "edited", "labeled", "locked", "milestoned", "opened", "pinned", "reopened", "transferred", "unassigned", "unlabeled", "unlocked", "unpinned" [events]
|
10 | types: created
| ^~~~~~~
test.yaml:13:5: "tags" filter is not available for release event. it is only for push event [events]
|
13 | tags: v*.*.*
| ^~~~~
test.yaml:15:3: unknown Webhook event "pullreq". see https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#webhook-events for list of all Webhook event names [events]
|
15 | pullreq:
| ^~~~~~~~
At on:
, Webhook events can be specified to trigger the workflow. Webhook event documentation defines
which Webhook events are available and what types can be specified at types:
for each event.
actionlint validates the Webhook configurations:
- Webhook event name
- types for Webhook event
- filter names
- filter usages
paths
andpaths-ignore
,branches
andbranches-ignore
,tags
andtags-ignore
are exclusive. They can not be used for the same event.- Some filters are only available for specific events as explained in the official document (see the following table).
Filter name | Events where the filter is available |
---|---|
paths |
push , pull_request , pull_request_target |
paths-ignore |
push , pull_request , pull_request_target |
branches |
push , pull_request , pull_request_target |
branches-ignore |
push , pull_request , pull_request_target |
tags |
push |
tags-ignore |
push |
The table of available Webhooks and their types are defined in all_webhooks.go
. It is generated
by a script and kept to the latest by CI workflow triggered weekly.
Example input:
on:
workflow_dispatch:
inputs:
# Unknown input type
id:
type: text
# ERROR: No options for 'choice' input type
kind:
type: choice
name:
type: choice
options:
- Tama
- Mike
# ERROR: Default value is not in options
default: Chobi
message:
type: string
verbose:
type: boolean
# ERROR: Boolean value must be 'true' or 'false'
default: yes
age:
type: number
# ERROR: Number value must be parsed as a float number
default: teen
jobs:
test:
runs-on: ubuntu-latest
steps:
# ERROR: Undefined input
- run: echo "${{ inputs.massage }}"
# ERROR: Bool value is not available for object key
- run: echo "${{ env[inputs.verbose] }}"
# ERROR: Number value is not available for object key
- run: echo "${{ env[inputs.age] }}"
# ERROR: `github.event.inputs` is also not defined
- run: echo "${{ github.event.inputs.massage }}"
Output:
test.yaml:6:15: input type of workflow_dispatch event must be one of "string", "number", "boolean", "choice", "environment" but got "text" [syntax-check]
|
6 | type: text
| ^~~~
test.yaml:8:7: input type of "kind" is "choice" but "options" is not set [events]
|
8 | kind:
| ^~~~~
test.yaml:16:18: default value "Chobi" of "name" input is not included in its options "\"Tama\", \"Mike\"" [events]
|
16 | default: Chobi
| ^~~~~
test.yaml:22:18: type of "verbose" input is "boolean". its default value "yes" must be "true" or "false" [events]
|
22 | default: yes
| ^~~
test.yaml:26:18: type of "age" input is "number" but its default value "teen" cannot be parsed as a float number: strconv.ParseFloat: parsing "teen": invalid syntax [events]
|
26 | default: teen
| ^~~~
test.yaml:33:24: property "massage" is not defined in object type {age: number; id: any; kind: string; message: string; name: string; verbose: bool} [expression]
|
33 | - run: echo "${{ inputs.massage }}"
| ^~~~~~~~~~~~~~
test.yaml:35:28: property access of object must be type of string but got "bool" [expression]
|
35 | - run: echo "${{ env[inputs.verbose] }}"
| ^~~~~~~~~~~~~~~
test.yaml:37:28: property access of object must be type of string but got "number" [expression]
|
37 | - run: echo "${{ env[inputs.age] }}"
| ^~~~~~~~~~~
test.yaml:39:24: property "massage" is not defined in object type {age: string; id: string; kind: string; message: string; name: string; verbose: string} [expression]
|
39 | - run: echo "${{ github.event.inputs.massage }}"
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
workflow_dispatch
is an event to trigger a workflow manually. The event can have parameters called
'inputs'. Each input has its name, description, default value, and input type.
actionlint checks several mistakes around workflow_dispatch
configuration.
- Input type must be one of 'choice', 'string', 'number', 'boolean', 'environment'
options:
must be set for 'choice' input type- The default value of 'choice' input must be included in options
- The default value of 'boolean' input must be
true
orfalse
- The default value of 'number' input must be parsed as a float number
In addition, github.event.inputs
and inputs
objects are typed based on the input definitions. Properties not defined in
inputs:
will cause a type error thanks to a type checker.
For example,
inputs:
string_input:
type: string
choice_input:
type: choice
options: ['hello']
bool_input:
type: boolean
num_input:
type: number
env_input:
type: environment
no_type_input:
inputs
is typed as follows from these definitions:
{
"string_input": string;
"choice_input": string;
"bool_input": bool;
"num_input": number;
"env_input": string;
"no_type_input": any;
}
github.event.inputs
is typed as follows since all properties of it are strings unlike inputs
:
{
"string_input": string;
"choice_input": string;
"bool_input": string;
"num_input": string;
"env_input": string;
"no_type_input": string;
}
Example input:
on:
push:
branches:
# ^ is not available for branch name. This kind of mistake is usually caused by misunderstanding
# that regular expression is available here
- '^foo-'
tags:
# Invalid syntax. + cannot follow special character *
- 'v*+'
# Invalid character range 9-1
- 'v[9-1]'
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo ...
Output:
test.yaml:6:10: character '^' is invalid for branch and tag names. ref name cannot contain spaces, ~, ^, :, [, ?, *. see `man git-check-ref-format` for more details. note that regular expression is unavailable. note: filter pattern syntax is explained at https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet [glob]
|
6 | - '^foo-'
| ^~~~~~
test.yaml:9:12: invalid glob pattern. unexpected character '+' while checking special character + (one or more). the preceding character must not be special character. note: filter pattern syntax is explained at https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet [glob]
|
9 | - 'v*+'
| ^~
test.yaml:11:14: invalid glob pattern. unexpected character '1' while checking character range in []. start of range '9' (57) is larger than end of range '1' (49). note: filter pattern syntax is explained at https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet [glob]
|
11 | - 'v[9-1]'
| ^~~
For filtering branches, tags and paths in Webhook events, glob syntax is available.
actionlint validates glob patterns branches:
, branches-ignore:
, tags:
, tags-ignore:
, paths:
, paths-ignore:
in a
workflow. It checks:
- syntax errors like missing closing brackets for character range
[..]
- invalid usage like
?
following*
, invalid character range[9-1]
, ... - invalid character usage for Git ref names (branch name, tag name)
- ref name cannot start/end with
/
- ref name cannot contain
[
,:
,\
, ...
- ref name cannot start/end with
Most common mistake I have ever seen here is a misunderstanding that regular expression is available for filtering. This rule can catch the mistake so that users can notice their mistakes.
Example input:
on:
schedule:
# ERROR: Cron syntax is not correct
- cron: '0 */3 * *'
# ERROR: Interval of scheduled job is too small (job runs too frequently)
- cron: '* */3 * * *'
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo ...
Output:
test.yaml:4:13: invalid CRON format "0 */3 * *" in schedule event: expected exactly 5 fields, found 4: [0 */3 * *] [events]
|
4 | - cron: '0 */3 * *'
| ^~
test.yaml:6:13: scheduled job runs too frequently. it runs once per 60 seconds. the shortest interval is once every 5 minutes [events]
|
6 | - cron: '* */3 * * *'
| ^~
To trigger a workflow in specific interval, scheduled event can be defined in POSIX CRON syntax.
actionlint checks the CRON syntax and frequency of running a job. The official document says:
The shortest interval you can run scheduled workflows is once every 5 minutes.
When the job is run more frequently than once every 5 minutes, actionlint reports it as an error.
Example input:
on: push
jobs:
test:
strategy:
matrix:
runner:
# OK
- macos-latest
# ERROR: Unknown runner
- linux-latest
# OK: Preset labels for self-hosted runner
- [self-hosted, linux, x64]
# OK: Single preset label for self-hosted runner
- arm64
# ERROR: Unknown label "gpu". Custom label must be defined in actionlint.yaml config file
- gpu
runs-on: ${{ matrix.runner }}
steps:
- run: echo ...
test2:
# ERROR: Too old macOS worker
runs-on: macos-10.13
steps:
- run: echo ...
Output:
test.yaml:10:13: label "linux-latest" is unknown. available labels are "windows-latest", "windows-2022", "windows-2019", "windows-2016", "ubuntu-latest", ... [runner-label]
|
10 | - linux-latest
| ^~~~~~~~~~~~
test.yaml:16:13: label "gpu" is unknown. available labels are "windows-latest", "windows-2022", "windows-2019", "windows-2016", "ubuntu-latest", ... [runner-label]
|
16 | - gpu
| ^~~
test.yaml:23:14: label "macos-10.13" is unknown. available labels are "windows-latest", "windows-2022", "windows-2019", "windows-2016", "ubuntu-latest", ... [runner-label]
|
23 | runs-on: macos-10.13
| ^~~~~~~~~~~
GitHub Actions provides two kinds of job runners, GitHub-hosted runner and self-hosted runner.
Each runner has one or more labels. GitHub Actions runtime finds a proper runner based on label(s) specified at runs-on:
to run the job. So specifying proper labels at runs-on:
is important.
actionlint checks proper label is used at runs-on:
configuration. Even if an expression is used in the section like
runs-on: ${{ matrix.foo }}
, actionlint parses the expression and resolves the possible values, then validates the values.
When you define some custom labels for your self-hosted runner, actionlint does not know the labels. Please set the label
names in actionlint.yaml
configuration file to let actionlint know them.
In addition to checking label values, actionlint checks combinations of labels. runs-on:
section can be an array that contains
multiple labels. In this case, a runner which has all the labels will be selected. However, those labels combinations can have
conflicts.
Example input:
on: push
jobs:
test:
runs-on: [ubuntu-latest, windows-latest]
steps:
- run: echo ...
Output:
test.yaml:4:30: label "windows-latest" conflicts with label "ubuntu-latest" defined at line:4,col:15. note: to run your job on each worker, use matrix [runner-label]
|
4 | runs-on: [ubuntu-latest, windows-latest]
| ^~~~~~~~~~~~~~~
In most cases, this is a misunderstanding that a matrix combination can be specified at runs-on:
directly. It should use
matrix:
and expand it with ${{ }}
at runs-on:
to run the workflow on multiple runners.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# ERROR: ref is missing
- uses: actions/checkout
# ERROR: owner name is missing
- uses: checkout@v2
# ERROR: tag is empty
- uses: 'docker://image:'
# ERROR: local action must start with './'
- uses: .github/my-actions/do-something
Output:
test.yaml:7:15: specifying action "actions/checkout" in invalid format because ref is missing. available formats are "{owner}/{repo}@{ref}" or "{owner}/{repo}/{path}@{ref}" [action]
|
7 | - uses: actions/checkout
| ^~~~~~~~~~~~~~~~
test.yaml:9:15: specifying action "checkout@v2" in invalid format because owner is missing. available formats are "{owner}/{repo}@{ref}" or "{owner}/{repo}/{path}@{ref}" [action]
|
9 | - uses: checkout@v2
| ^~~~~~~~~~~
test.yaml:11:15: tag of Docker action should not be empty: "docker://image" [action]
|
11 | - uses: 'docker://image:'
| ^~~~~~~~~~~~~~~~~
test.yaml:13:15: specifying action ".github/my-actions/do-something" in invalid format because ref is missing. available formats are "{owner}/{repo}@{ref}" or "{owner}/{repo}/{path}@{ref}" [action]
|
13 | - uses: .github/my-actions/do-something
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Action needs to be specified in a format defined in the document. There are 3 types of actions:
- action hosted on GitHub:
owner/repo/path@ref
- local action:
./path/to/my-action
- Docker action:
docker://image:tag
actionlint checks values at uses:
sections follow one of these formats.
Note that actionlint does not report any error when a directory for a local action does not exist in the repository because it is a common case where the action is managed in a separate repository and the action directory is cloned at running the workflow. (See #25 and #40 for more details).
My action definition at .github/actions/my-action/action.yaml
:
name: 'My action'
author: 'rhysd <https://rhysd.github.io>'
description: 'my action'
inputs:
name:
description: your name
default: anonymous
message:
description: message to this action
required: true
addition:
description: additional information
required: false
runs:
using: 'node14'
main: 'index.js'
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# missing required input "message"
- uses: ./.github/actions/my-action
# unexpected input "additions"
- uses: ./.github/actions/my-action
with:
name: rhysd
message: hello
additions: foo, bar
Output:
test.yaml:7:15: missing input "message" which is required by action "My action" defined at "./.github/actions/my-action". all required inputs are "message" [action]
|
7 | - uses: ./.github/actions/my-action
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:13:11: input "additions" is not defined in action "My action" defined at "./.github/actions/my-action". available inputs are "addition", "message", "name" [action]
|
13 | additions: foo, bar
| ^~~~~~~~~~
When a local action is run in uses:
of step:
, actionlint reads action.yml
file in the local action directory and
validates inputs at with:
in the workflow are correct. Missing required inputs and unexpected inputs can be detected.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v3
with:
keys: |
${{ hashFiles('**/*.lock') }}
${{ hashFiles('**/*.cache') }}
path: ./packages
- run: make
Output:
test.yaml:7:15: missing input "key" which is required by action "actions/cache@v3". all required inputs are "key", "path" [action]
|
7 | - uses: actions/cache@v3
| ^~~~~~~~~~~~~~~~
test.yaml:9:11: input "keys" is not defined in action "actions/cache@v3". available inputs are "key", "path", "restore-keys", "upload-chunk-size" [action]
|
9 | keys: |
| ^~~~~
actionlint checks inputs of many popular actions such as actions/checkout@v3
. It checks
- some input is required by the action but it is not set at
with:
- input set at
with:
is not defined in the action (this commonly occurs by a typo)
this is done by checking with:
section items with a small database collected at building actionlint
binary. actionlint
can check popular actions without fetching any action.yml
of the actions from the remote so that it can run efficiently.
Note that it only supports the case of specifying major versions like actions/checkout@v3
. Fixing version of action like
actions/[email protected]
and using the HEAD of action like actions/checkout@main
are not supported for now.
So far, actionlint supports more than 100 popular actions The data set is embedded at popular_actions.go
and were automatically collected by a script. If you want more checks for other actions, please
make a request as an issue.
Example input:
on: push
jobs:
linux:
runs-on: ubuntu-latest
steps:
- run: echo 'hello'
# ERROR: Unavailable shell
shell: dash
- run: echo 'hello'
# ERROR: 'powershell' is only available on Windows
shell: powershell
mac:
runs-on: macos-latest
defaults:
run:
# ERROR: default config is also checked. fish is not supported
shell: fish
steps:
- run: echo 'hello'
# OK: Custom shell
shell: 'perl {0}'
windows:
runs-on: windows-latest
steps:
- run: echo 'hello'
# ERROR: 'sh' is only available on Windows
shell: sh
- run: echo 'hello'
# OK: 'powershell' is only available on Windows
shell: powershell
Output:
test.yaml:8:16: shell name "dash" is invalid. available names are "bash", "pwsh", "python", "sh" [shell-name]
|
8 | shell: dash
| ^~~~
test.yaml:11:16: shell name "powershell" is invalid on macOS or Linux. available names are "bash", "pwsh", "python", "sh" [shell-name]
|
11 | shell: powershell
| ^~~~~~~~~~
test.yaml:14:16: shell name "powershell" is invalid on macOS or Linux. available names are "bash", "pwsh", "python", "sh" [shell-name]
|
14 | shell: powershell
| ^~~~~~~~~~
test.yaml:20:16: shell name "fish" is invalid. available names are "bash", "pwsh", "python", "sh" [shell-name]
|
20 | shell: fish
| ^~~~
test.yaml:30:16: shell name "sh" is invalid on Windows. available names are "bash", "pwsh", "python", "cmd", "powershell" [shell-name]
|
30 | shell: sh
| ^~
Available shells for runners are defined in the documentation. actionlint checks shell names at shell:
configuration are properly using the available shells.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo 'hello'
id: step_id
- run: echo 'bye'
# ERROR: Duplicate step ID
id: STEP_ID
# ERROR: Duplicate job ID
TEST:
runs-on: ubuntu-latest
steps:
- run: echo 'hello'
# OK. Step ID uniqueness is job-local
id: step_id
Output:
test.yaml:10:13: step ID "STEP_ID" duplicates. previously defined at line:7,col:13. step ID must be unique within a job. note that step ID is case insensitive [id]
|
10 | id: STEP_ID
| ^~~~~~~
test.yaml:12:3: key "TEST" is duplicated in "jobs" section. previously defined at line:3,col:3. note that key names are case insensitive [syntax-check]
|
12 | TEST:
| ^~~~~
Job IDs and step IDs in each jobs must be unique. IDs are compared in case insensitive. actionlint checks all job IDs and step IDs, and reports errors when some IDs duplicate.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
container:
image: 'example.com/owner/image'
credentials:
username: user
# ERROR: Hardcoded password
password: pass
services:
redis:
image: redis
credentials:
username: user
# ERROR: Hardcoded password
password: pass
steps:
- run: echo 'hello'
Output:
test.yaml:10:19: "password" section in "container" section should be specified via secrets. do not put password value directly [credentials]
|
10 | password: pass
| ^~~~
test.yaml:17:21: "password" section in "redis" service should be specified via secrets. do not put password value directly [credentials]
|
17 | password: pass
| ^~~~
Credentials for container can be put in container:
configuration. Password should be put in secrets
and the value should be expanded with ${{ }}
syntax at password:
. actionlint checks hardcoded credentials, and reports
them as an error.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
env:
FOO=BAR: foo
FOO BAR: foo
steps:
- run: echo 'hello'
Output:
test.yaml:6:7: environment variable name "FOO=BAR" is invalid. '&', '=' and spaces should not be contained [env-var]
|
6 | FOO=BAR: foo
| ^~~~~~~~
test.yaml:7:7: environment variable name "FOO BAR" is invalid. '&', '=' and spaces should not be contained [env-var]
|
7 | FOO BAR: foo
| ^~~
=
must not be included in environment variable names. And &
and spaces should not be included in them. In almost all
cases they are mistakes and they may cause some issues on using them in shell since they have special meaning in shell syntax.
actionlint checks environment variable names are correct in env:
configuration.
Example input:
on: push
# ERROR: Available values for whole permissions are "write-all", "read-all" or "none"
permissions: write
jobs:
test:
runs-on: ubuntu-latest
permissions:
# ERROR: "checks" is correct scope name
check: write
# ERROR: Available values are "read", "write" or "none"
issues: readable
steps:
- run: echo hello
Output:
test.yaml:4:14: "write" is invalid for permission for all the scopes. available values are "read-all" and "write-all" [permissions]
|
4 | permissions: write
| ^~~~~
test.yaml:11:7: unknown permission scope "check". all available permission scopes are "actions", "checks", "contents", "deployments", "discussions", "id-token", "issues", "packages", "pages", "pull-requests", "repository-projects", "security-events", "statuses" [permissions]
|
11 | check: write
| ^~~~~~
test.yaml:13:15: "readable" is invalid for permission of scope "issues". available values are "read", "write" or "none" [permissions]
|
13 | issues: readable
| ^~~~~~~~
Permissions of GITHUB_TOKEN
token can be configured at workflow-level or job-level by permissions:
section.
Each permission scopes have its access levels. The default levels are described in the document.
actionlint checks permission scopes and access levels in a workflow are correct.
Reusable workflows is a feature to call a workflow from another workflow.
actionlint does several checks for both workflow calls (caller) and reusable workflows (callee):
- syntax of workflow calls and reusable workflows
- type checks for inputs (respecting
type:
field of each input) in both workflow calls and reusable workflows - type checks for
inputs
,outputs
andsecrets
context objects in reusable workflows - optional/required/undefined inputs and secrets at
uses:
in workflow calls - type checks for
outputs
objects used by downstream jobs of workflow calls
These checks are described in this section.
Example input:
on:
workflow_call:
inputs:
scheme:
description: Scheme of URL
# OK: Type is string
default: https
type: string
host:
default: example.com
type: string
port:
description: Port of URL
# ERROR: Type is number but default value is string
default: ':1234'
type: number
query:
description: Query of URL
# ERROR: Type must be one of number, string, boolean
type: object
path:
description: Path of URL
required: true
# ERROR: Default value is never used since this input is required
default: ''
type: string
jobs:
do:
runs-on: ubuntu-latest
steps:
- run: echo "${{ inputs.scheme }}://${{ inputs.host }}:${{ inputs.port }}${{ inputs.path }}"
Output:
test.yaml:15:18: input of workflow_call event "port" is typed as number but its default value ":1234" cannot be parsed as a float number: strconv.ParseFloat: parsing ":1234": invalid syntax [events]
|
15 | default: ':1234'
| ^~~~~~~
test.yaml:20:15: invalid value "object" for input type of workflow_call event. it must be one of "boolean", "number", or "string" [syntax-check]
|
20 | type: object
| ^~~~~~
test.yaml:25:18: input "path" of workflow_call event has the default value "", but it is also required. if an input is marked as required, its default value will never be used [events]
|
25 | default: ''
| ^~
Unlike inputs of action, inputs of a workflow must specify their types. actionlint validates input types and checks the default values are correctly typed. For more details, see the official document.
Example input:
on: push
jobs:
job1:
uses: owner/repo/path/to/workflow.yml@v1
# ERROR: 'runs-on' is not available on calling reusable workflow
runs-on: ubuntu-latest
job2:
# ERROR: Local file path with ref is not available
uses: ./.github/workflows/ci.yml@main
job3:
# ERROR: 'with' is only available on calling reusable workflow
with:
foo: bar
runs-on: ubuntu-latest
steps:
- run: echo hello
job4:
# ERROR: This workflow does not exist
uses: ./.github/workflows/not-existing.yml
Output:
test.yaml:6:5: when a reusable workflow is called with "uses", "runs-on" is not available. only following keys are allowed: "name", "uses", "with", "secrets", "needs", "if", and "permissions" in job "job1" [syntax-check]
|
6 | runs-on: ubuntu-latest
| ^~~~~~~~
test.yaml:9:11: reusable workflow call "./.github/workflows/ci.yml@main" at "uses" is not following the format "owner/repo/path/to/workflow.yml@ref" nor "./path/to/workflow.yml". see https://docs.github.com/en/actions/learn-github-actions/reusing-workflows for more details [workflow-call]
|
9 | uses: ./.github/workflows/ci.yml@main
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:12:5: "with" is only available for a reusable workflow call with "uses" but "uses" is not found in job "job3" [syntax-check]
|
12 | with:
| ^~~~~
test.yaml:19:11: could not read reusable workflow file for "./.github/workflows/not-existing.yml": open /path/to/.github/workflows/not-existing.yml: no such file or directory [workflow-call]
|
19 | uses: ./.github/workflows/not-existing.yml
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
When calling an external workflow, only specific keys are available at job configuration.
For example, secrets:
is not available when running steps in a normal job. And runs-on:
is not available when calling
a reusable workflow since the called workflow determines which OS is used. actionlint checks such keys are used correctly
to call a reusable workflow or to run steps in a normal job.
And the workflow syntax at uses:
must follow the format owner/repo/path/to/workflow.yml@ref
as described in
the official document. actionlint checks if the value follows the format.
actionlint also validates the called workflow file is actually existing when it is a local workflow (starting with ./
).
actionlint reports an error when it does not exist.
Example input:
on:
workflow_call:
inputs:
url:
description: 'your URL'
type: string
lucky_number:
description: 'your lucky number'
type: number
secrets:
credential:
description: 'your credential'
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Send data
# ERROR: uri is typo of url
run: curl ${{ inputs.uri }} -d ${{ inputs.lucky_number }}
env:
# ERROR: credentials is typo of credential
TOKEN: ${{ secrets.credentials }}
Output:
test.yaml:20:23: property "uri" is not defined in object type {url: string; lucky_number: number} [expression]
|
20 | run: curl ${{ inputs.uri }} -d ${{ inputs.lucky_number }}
| ^~~~~~~~~~
test.yaml:23:22: property "credentials" is not defined in object type {credential: string} [expression]
|
23 | TOKEN: ${{ secrets.credentials }}
| ^~~~~~~~~~~~~~~~~~~
Inputs of reusable workflow calls are set to inputs.*
properties following the definitions at on.workflow_call.inputs
.
And in a job of a reusable workflow, secrets.*
are passed from caller of the workflow so it is set following the definitions at
on.workflow_call.secrets
. See the official document for more details.
actionlint contextually defines types of inputs
and secrets
contexts looking at workflow_call
event. Keys of inputs
only
allow keys at on.workflow_call.inputs
and their values are typed based on on.workflow_call.inputs.<input_name>.type
. Type of
secrets
is also strictly typed following on.workflow_call.secrets
.
From May 3, 2022, GitHub Actions allows inheriting secrets by calling reusable workflows. The caller declares to inherit all secrets.
jobs:
pass-secrets-to-workflow:
uses: ./.github/workflows/called-workflow.yml
secrets: inherit
This means that actionlint cannot know whether the workflow inherits secrets or not when checking a reusable workflow. To solve this issue, actionlint assumes that
- when
secrets:
is omitted in a reusable workflow, the workflow inherits secrets from a caller - when
secrets:
exists in a reusable workflow, the workflow inherits no other secret
Following the assumptions,
on:
workflow_call:
jobs:
pass-secret-to-action:
runs-on: ubuntu-latest
steps:
# OK: This reports no error. FOO is assumed to be inherited from caller
- run: echo ${{ secrets.FOO }}
this workflow causes no error. And
on:
workflow_call:
secrets:
jobs:
pass-secret-to-action:
runs-on: ubuntu-latest
steps:
# ERROR: Secret FOO is not defined
- run: echo ${{ secrets.FOO }}
this workflow causes 'no such secret' error at secrets.FOO
.
Example input:
on:
workflow_call:
outputs:
image-version:
description: "Docker image version"
# ERROR: 'imagetag' does not exist (typo of 'image_tag')
value: ${{ jobs.gen-image-version.outputs.imagetag }}
jobs:
gen-image-version:
runs-on: ubuntu-latest
outputs:
image_tag: "${{ steps.get_tag.outputs.tag }}"
steps:
- run: ./output_image_tag.sh
id: get_tag
Output:
test.yaml:6:20: property "imagetag" is not defined in object type {image_tag: string} [expression]
|
6 | value: ${{ jobs.gen-image-version.outputs.imagetag }}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Outputs of a reusable workflow can be defined at on.workflow_call.outputs
as described in the document.
The jobs
context is available to define an output value to refer the outputs of jobs in the workflow. actionlint checks
the context is used correctly.
Example reusable workflow:
# .github/workflows/reusable.yaml
on:
workflow_call:
inputs:
name:
type: string
required: true
id:
type: number
message:
type: string
secrets:
password:
required: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo '${{ outputs.required_input }}'
Example input:
on: push
jobs:
# Check required/undefined inputs and secrets
missing-required:
uses: ./.github/workflows/reusable.yaml
with:
# ERROR: Undefined input
user: rhysd
# ERROR: Required input "name" is missing
secrets:
# ERROR: Undefined secret
credentials: my-token
# ERROR: Required secret "password" is missing
# Check types of inputs defined in reusable workflow
type-checks:
uses: ./.github/workflows/reusable.yaml
with:
name: rhysd
# ERROR: Cannot assign bool value to number input
id: true
# ERROR: Cannot assign null to string input. If you want to pass string "null", use ${{ 'null' }}
message: null
secrets:
password: p@ssw0rd
Output:
test.yaml:6:11: input "name" is required by "./.github/workflows/reusable.yaml" reusable workflow [workflow-call]
|
6 | uses: ./.github/workflows/reusable.yaml
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:6:11: secret "password" is required by "./.github/workflows/reusable.yaml" reusable workflow [workflow-call]
|
6 | uses: ./.github/workflows/reusable.yaml
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.yaml:9:7: input "user" is not defined in "./.github/workflows/reusable.yaml" reusable workflow. defined inputs are "id", "message", "name" [workflow-call]
|
9 | user: rhysd
| ^~~~~
test.yaml:13:7: secret "credentials" is not defined in "./.github/workflows/reusable.yaml" reusable workflow. defined secret is "password" [workflow-call]
|
13 | credentials: my-token
| ^~~~~~~~~~~~
test.yaml:22:11: input "id" is typed as number by reusable workflow "./.github/workflows/reusable.yaml". bool value cannot be assigned [expression]
|
22 | id: true
| ^~~~
test.yaml:24:16: input "message" is typed as string by reusable workflow "./.github/workflows/reusable.yaml". null value cannot be assigned [expression]
|
24 | message: null
| ^~~~
Reusable workflows can define required/optional inputs and secrets. When they are missing or some undefined input is used in a workflow call, actionlint reports an error.
And reusable workflows must define types of their inputs by type:
field. Workflow calls pass constants (input: 42
) or
expressions (inputs: ${{ ... }}
) to the inputs or secrets. actionlint checks types of values passed to inputs in workflow call.
When a type of input doesn't match to its definition, actionlint reports an error.
Note that this check only works with local reusable workflow (it starts with ./
).
Example reusable workflow:
# .github/workflows/get-build-info.yaml
on:
workflow_call:
outputs:
version:
value: ${{ outputs.version }}
description: version of software
jobs:
test:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get_version.outputs.version }}
steps:
- run: ...
id: get_version
Example input:
on: push
jobs:
get_build_info:
uses: ./.github/workflows/get-build-info.yaml
downstream:
needs: [get_build_info]
runs-on: ubuntu-latest
steps:
# OK. `version` is defined in the reusable workflow
- run: echo '${{ needs.get_build_info.outputs.version }}'
# ERROR: `tag` is not defined in the reusable workflow
- run: echo '${{ needs.get_build_info.outputs.tag }}'
Output:
test.yaml:13:24: property "tag" is not defined in object type {version: string} [expression]
|
13 | - run: echo '${{ needs.get_build_info.outputs.tag }}'
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Outputs of workflow call are set to the job's outputs object. They can be accessed by downstream jobs specified with needs:
.
What outputs are set is defined in the reusable workflow. actionlint types outputs objects from workflow calls and check the
object types in downstream jobs.
In the above example, get-build-info.yaml
has one output version
. actionlint types the outputs object of workflow call job
as {version: string}
. In the downstream job, actionlint can report an error at undefined key tag
in the object.
Note that this check only works with local reusable workflow (starting with ./
).
Example input:
on: push
jobs:
# ERROR: '.' cannot be contained in ID
foo-v1.2.3:
runs-on: ubuntu-latest
steps:
- run: echo 'job ID with version'
# ERROR: ID cannot contain spaces
id: echo for test
# ERROR: ID cannot start with '-'
-hello-world-:
runs-on: ubuntu-latest
steps:
- run: echo 'oops'
# ERROR: ID cannot start with numbers
2d-game:
runs-on: ubuntu-latest
steps:
- run: echo 'oops'
Output:
test.yaml:5:3: invalid job ID "foo-v1.2.3". job ID must start with a letter or _ and contain only alphanumeric characters, -, or _ [id]
|
5 | foo-v1.2.3:
| ^~~~~~~~~~~
test.yaml:10:13: invalid step ID "echo for test". step ID must start with a letter or _ and contain only alphanumeric characters, -, or _ [id]
|
10 | id: echo for test
| ^~~~
test.yaml:12:3: invalid job ID "-hello-world-". job ID must start with a letter or _ and contain only alphanumeric characters, -, or _ [id]
|
12 | -hello-world-:
| ^~~~~~~~~~~~~~
test.yaml:17:3: invalid job ID "2d-game". job ID must start with a letter or _ and contain only alphanumeric characters, -, or _ [id]
|
17 | 2d-game:
| ^~~~~~~~
IDs must start with a letter or _
and contain only alphanumeric characters, -
or _
. actionlint checks the naming
convention, and reports invalid IDs as errors.
Example input:
on: push
env:
NAME: rhysd
jobs:
test:
strategy:
matrix:
directory:
# OK: 'github' context is available here
- ${{ github.workflow }}
# ERROR: 'runner' context is not available here
- ${{ runner.temp }}
runs-on: ubuntu-latest
env:
# ERROR: 'env' context is not available here
NAME: ${{ env.NAME }}
steps:
- env:
# OK: 'env' context is available here
NAME: ${{ env.NAME }}
# ERROR: 'success()' function is not available here
run: echo 'Success? ${{ success() }}'
# OK: 'success()' function is available here
if: success()
Output:
test.yaml:14:17: context "runner" is not allowed here. available contexts are "github", "inputs", "needs", "vars". see https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability for more details [expression]
|
14 | - ${{ runner.temp }}
| ^~~~~~~~~~~
test.yaml:18:17: context "env" is not allowed here. available contexts are "github", "inputs", "matrix", "needs", "secrets", "strategy", "vars". see https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability for more details [expression]
|
18 | NAME: ${{ env.NAME }}
| ^~~~~~~~
test.yaml:24:33: calling function "success" is not allowed here. "success" is only available in "jobs.<job_id>.if", "jobs.<job_id>.steps.if". see https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability for more details [expression]
|
24 | run: echo 'Success? ${{ success() }}'
| ^~~~~~~~~
Some contexts are only available in some places. For example, env
context is not available at jobs.<job_id>.env
but it is
available at jobs.<job_id>.steps.env
.
Similarly, some status functions are special since they limit where they can be called. For example, success()
, failure()
,
always()
, and cancelled()
are only available at if:
section. At the time of writing this document, the following functions
are special.
hashFiles()
always()
success()
failure()
cancelled()
The official contexts document describes which contexts and special functions are available at which workflow keys.
actionlint checks if these contexts and special functions are used correctly. It reports an error when it finds that some context or special function is not available in your workflow.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# ERROR: 'set-output' workflow command was deprecated
- run: echo '::set-output name=foo::bar'
# OK: Use this instead
- run: echo "foo=bar" >> "$GITHUB_OUTPUT"
# OK: 'debug' command is not deprecated
- run: echo "::debug::Set the Octocat variable"
Output:
test.yaml:8:14: workflow command "set-output" was deprecated. use `echo "{name}={value}" >> $GITHUB_OUTPUT` instead: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions [deprecated-commands]
|
8 | - run: echo '::set-output name=foo::bar'
| ^~~~
GitHub deprecated the following workflow commands.
actionlint detects these commands are used in run:
and reports them as errors suggesting alternatives. See
the official document for the comprehensive list of workflow commands to know the usage.
Example input:
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo 'Commit is pushed'
# OK
if: ${{ github.event_name == 'push' }}
- run: echo 'Commit is pushed'
# OK
if: |
github.event_name == 'push'
- run: echo 'Commit is pushed'
# ERROR: It is always evaluated to true
if: |
${{ github.event_name == 'push' }}
- run: echo 'Commit is pushed'
# ERROR: It is always evaluated to true
if: "${{ github.event_name == 'push' }} "
- run: echo 'Commit is pushed to main'
# OK
if: github.event_name == 'push' && github.ref_name == 'main'
- run: echo 'Commit is pushed to main'
# ERROR: It is always evaluated to true
if: ${{ github.event_name == 'push' }} && ${{ github.ref_name == 'main' }}
Output:
test.yaml:16:13: if: condition "${{ github.event_name == 'push' }}\n" is always evaluated to true because extra characters are around ${{ }} [if-cond]
|
16 | if: |
| ^
test.yaml:20:13: if: condition "${{ github.event_name == 'push' }} " is always evaluated to true because extra characters are around ${{ }} [if-cond]
|
20 | if: "${{ github.event_name == 'push' }} "
| ^~~~
test.yaml:26:13: if: condition "${{ github.event_name == 'push' }} && ${{ github.ref_name == 'main' }}" is always evaluated to true because extra characters are around ${{ }} [if-cond]
|
26 | if: ${{ github.event_name == 'push' }} && ${{ github.ref_name == 'main' }}
| ^~~
Evaluation of ${{ }}
at if:
condition is tricky. When the expression in ${{ }}
is evaluated to boolean value and there is
no extra characters around the ${{ }}
, the condition is evaluated to the boolean value. Otherwise the condition is treated as
string hence it is always evaluated to true
.
It means that multi-line string must not be used at if:
condition (if: |
) because the condition is always evaluated to true.
Multi-line string inserts newline character at end of each line.
if: |
${{ false }}
is equivalent to
if: "${{ false }}\n"
Unlike using ${{ }}
, putting an expression directly ignores white spaces around it. It's the reason why
if: |
false
works as intended.
actionlint checks all if:
conditions in workflow and reports error when some condition is always evaluated to true due to extra
characters around ${{ }}
.
Installation | Usage | Configuration | Go API | References