We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bad47e commit 73908efCopy full SHA for 73908ef
.github/workflows/ansible-lint.yml
@@ -10,11 +10,19 @@ jobs:
10
ansible-lint:
11
name: Ansible Lint
12
13
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-latest
14
15
steps:
16
- uses: actions/checkout@v4
17
18
+ # Python version being set because of issue with Ubuntu permissions and versions of Python < 3.11
19
+ - name: Set up Python
20
+ # This is the version of the action for setting up Python, not the Python version.
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ # Semantic version range syntax or exact version of a Python version
24
+ python-version: '3.11'
25
+
26
- name: Install Ansible collections
27
run: |
28
ansible-galaxy collection install -r requirements.yml
0 commit comments