We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54dcfd7 commit f9941c3Copy full SHA for f9941c3
1 file changed
.github/actions/setup/action.yml
@@ -19,11 +19,24 @@ runs:
19
echo "${{ inputs.vault-password }}" > "${{ inputs.vault-password-file }}"
20
shell: bash
21
22
- - name: Install Python dependencies
+ - name: apt update
23
run: >
24
- sudo apt update &&
25
- sudo apt -y install python3 python3-pip &&
26
- pip install -r requirements.txt
+ sudo apt update
+ shell: bash
+
27
+ - name: sudo apt -y install python3
28
+ run: >
29
+ sudo apt -y install python3
30
31
32
+ - name: sudo apt -y install python3-pip
33
34
+ sudo apt -y install python3-pip
35
36
37
+ - name: pip install -r requirements.txt --break-system-packages
38
39
+ pip install -r requirements.txt --break-system-packages
40
41
42
- name: Install Ansible collection dependencies
0 commit comments