mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-11 00:56:54 +00:00
12 lines
409 B
YAML
12 lines
409 B
YAML
name: Lint GitHub Actions Workflows
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/**'
|
|
jobs:
|
|
actionlint:
|
|
# don't enforce strict typing for outputs (defined in this repo's
|
|
# action.yml) because vault-action's outputs are dynamic
|
|
skip_outputs: true
|
|
# using `main` as the ref will keep your workflow up-to-date
|
|
uses: hashicorp/vault-workflows-common/.github/workflows/actionlint.yaml@main
|