We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6819fa0 commit 0e7e0c8Copy full SHA for 0e7e0c8
1 file changed
.github/workflows/release.yml
@@ -37,12 +37,15 @@ jobs:
37
npm install -g @semantic-release/commit-analyzer
38
npm install -g @semantic-release/release-notes-generator
39
40
- - name: Install Ansible (and ansible Galaxy)
+ - name: Set up Python
41
+ uses: actions/setup-python@7f4fc3e22c37d6ff65e88745f38bd3157c663f7c # v4
42
+ with:
43
+ python-version: "3.11"
44
+
45
+ - name: Install Ansible
46
run: |
- apt update
- apt install software-properties-common
- add-apt-repository --yes --update ppa:ansible/ansible
- apt install ansible
47
+ python -m pip install --upgrade pip
48
+ pip install ansible ansible-lint
49
50
- name: Get the next version
51
0 commit comments