Skip to content

Commit 92b4efb

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

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ansible-linter.yaml

+6-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,15 @@ jobs:
1213
runs-on: ubuntu-latest
1314
steps:
1415
- uses: actions/checkout@v4
16+
1517
- name: Run ansible-lint
1618
uses: ansible/ansible-lint@main # or version tag instead of 'main'
19+
with:
20+
requirements_file: "requirements.yml"
21+
1722
- name: Upload sarif
1823
if: always()
1924
uses: github/codeql-action/upload-sarif@v2
2025
with:
2126
sarif_file: ansible.sarif
22-
category: ansible-lint
27+
category: ansible-lint

0 commit comments

Comments
 (0)