Skip to content

Commit

Permalink
fix: add missing jmespath dependency to ansible action
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaspalma committed Dec 30, 2024
1 parent e60ef32 commit 28337d2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ansible-linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- fix/ansible-lint


jobs:
Expand All @@ -12,11 +13,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install jmespath
- name: Run ansible-lint
uses: ansible/ansible-lint@main # or version tag instead of 'main'

- name: Upload sarif
if: always()
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ansible.sarif
category: ansible-lint
category: ansible-lint

0 comments on commit 28337d2

Please sign in to comment.