Skip to content

Commit fc3dbc2

Browse files
setting up python versin in workflows to 3.11 as github is picking 3.14 where ansible-core incompatilibity exists
Signed-off-by: Shiva Shankar Vaddepally <[email protected]>
1 parent 4e45980 commit fc3dbc2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/lint.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,14 @@ jobs:
2727
steps:
2828
# Important: This sets up your GITHUB_WORKSPACE environment variable
2929
- uses: actions/checkout@v4
30+
- name: Set up Python 3.11
31+
uses: actions/setup-python@v6
32+
with:
33+
python-version: 3.11
34+
- name: Install ansible-lint
35+
run: python -m pip install ansible-lint
3036
- name: Run ansible-lint
31-
uses: ansible/ansible-lint@main
37+
run: ansible-lint
3238
- name: Upload SARIF file
3339
uses: github/codeql-action/upload-sarif@v3
3440
with:

0 commit comments

Comments
 (0)