fix: ERROR! [DEPRECATED] ansible.builtin.include has been removed. Use include_tasks or import_tasks instead. This feature was removed from ansible-core in a release after 2023-05-16. Please update your playbooks. #279
Workflow file for this run
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: Linters | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: [ develop ] | |
permissions: | |
contents: read | |
jobs: | |
linter: | |
name: 'Pre Commit Hooks' | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: pre-commit/[email protected] | |
with: | |
extra_args: --files 'bench/' | |
deps-vulnerable-check: | |
name: 'Vulnerable Dependency Check' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: actions/checkout@v3 | |
- name: 'Pip Audit' | |
run: | | |
pip install pip-audit | |
pip-audit ${GITHUB_WORKSPACE} |