chore(deps): update reviewdog/action-ansiblelint action to v1.15.0 #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Review | |
on: [pull_request] | |
jobs: | |
# -- LINT ------------------------------------------------------------------- | |
ansible-lint: | |
name: runner / ansible-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden GitHub Actions Runner | |
uses: step-security/harden-runner@7120a7ab6b149ea41def3f8e8364f5b40cae5d7a | |
with: | |
egress-policy: audit | |
- name: Checkout | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- name: Prepare Ansible Lint | |
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1 | |
with: | |
python-version: 3.11.3 | |
- name: Run Ansible Lint | |
uses: reviewdog/action-ansiblelint@216ebec338b4f3d04b52bc73753ad7de01c50fba # v1.8.1 |