Bump poetry from 2.0.0 to 2.0.1 #295
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: Ansible Lint # feel free to pick your own name | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
env: | |
ANSIBLE_VAULT_PASSWORD: ${{ secrets.VaultPassword }} | |
steps: | |
# Important: This sets up your GITHUB_WORKSPACE environment variable | |
- uses: actions/checkout@v4 | |
# We drop the ansible.cfg file to unset the vault_password_file option | |
- name: Drop ansible.cfg file | |
run: rm ansible.cfg | |
- name: Lint Ansible Playbook | |
uses: ansible/ansible-lint@v6 |