Reports action references that use mutable branch-like refs such as:
mainmasterlatestdevdeveloptrunk
Mutable refs can change without notice. A workflow that worked yesterday can run different action code today, which creates reliability and supply-chain risk.
steps:
- uses: owner/action@mainsteps:
- uses: owner/action@v1For stricter security, pin to a full commit SHA:
steps:
- uses: owner/action@0123456789abcdef0123456789abcdef01234567warning
In --strict mode this rule is promoted to error.
Some internal repositories intentionally track a moving branch. In those cases, use --exclude mutable-action-reference for now. Configuration-file support is planned for a future release.