Skip to content

Commit 28337d2

Browse files
committed
fix: add missing jmespath dependency to ansible action
1 parent e60ef32 commit 28337d2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ansible-linter.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- fix/ansible-lint
78

89

910
jobs:
@@ -12,11 +13,18 @@ jobs:
1213
runs-on: ubuntu-latest
1314
steps:
1415
- uses: actions/checkout@v4
16+
17+
- name: Install dependencies
18+
run: |
19+
python3 -m pip install --upgrade pip
20+
pip install jmespath
21+
1522
- name: Run ansible-lint
1623
uses: ansible/ansible-lint@main # or version tag instead of 'main'
24+
1725
- name: Upload sarif
1826
if: always()
1927
uses: github/codeql-action/upload-sarif@v2
2028
with:
2129
sarif_file: ansible.sarif
22-
category: ansible-lint
30+
category: ansible-lint

0 commit comments

Comments
 (0)