Skip to content

chore(deps): Update pre-commit hook ansible/ansible-lint to v24.12.1 #686

chore(deps): Update pre-commit hook ansible/ansible-lint to v24.12.1

chore(deps): Update pre-commit hook ansible/ansible-lint to v24.12.1 #686

Workflow file for this run

---
name: 'ansible-lint'
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/ansible-lint.yml'
- 'defaults/**'
- 'files/**'
- 'handlers/**'
- 'library/**'
- 'lookup_plugins/**'
- 'meta/**'
- 'module_utils/**'
- 'molecule/**'
- 'tasks/**'
- 'templates/**'
- 'vars/**'
workflow_dispatch: {}
permissions:
contents: 'read'
jobs:
build:
name: 'Ansible Lint'
runs-on: 'ubuntu-24.04'
permissions:
contents: 'read'
steps:
- name: 'Harden Runner'
uses: 'step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f' # v2.10.2
with:
disable-sudo: true
egress-policy: 'block'
allowed-endpoints: >-
files.pythonhosted.org:443
github.com:443
pypi.org:443
raw.githubusercontent.com:443
- name: 'Checkout code'
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
- name: 'Run ansible-lint'
uses: 'ansible/ansible-lint@4d295e82dd814c6f5793f898ed881358a5c42361' # v24.12.1
...