mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-11 08:56:55 +00:00
15 lines
444 B
YAML
15 lines
444 B
YAML
name: Lint GitHub Actions Workflows
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/**'
|
|
|
|
jobs:
|
|
actionlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
- name: "Lint workflow files"
|
|
uses: docker://docker.mirror.hashicorp.services/rhysd/actionlint:latest
|
|
with:
|
|
args: "-ignore \"property 'othersecret' is not defined in object type {}\""
|