build(deps): bump actions/checkout from 5 to 6 #76
Workflow file for this run
This file contains hidden or 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: ansible-lint Linter | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Ansible Lint # Naming the build is important to use it as a status check | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Run ansible-lint | |
| uses: ansible/ansible-lint@main | |
| with: | |
| args: "-c ./ansible/.ansible-lint.yaml ansible" | |
| requirements_file: "ansible/requirements.yml" |