Skip to content

Commit f9941c3

Browse files
committed
testo
1 parent 54dcfd7 commit f9941c3

1 file changed

Lines changed: 17 additions & 4 deletions

File tree

.github/actions/setup/action.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,24 @@ runs:
1919
echo "${{ inputs.vault-password }}" > "${{ inputs.vault-password-file }}"
2020
shell: bash
2121

22-
- name: Install Python dependencies
22+
- name: apt update
2323
run: >
24-
sudo apt update &&
25-
sudo apt -y install python3 python3-pip &&
26-
pip install -r requirements.txt
24+
sudo apt update
25+
shell: bash
26+
27+
- name: sudo apt -y install python3
28+
run: >
29+
sudo apt -y install python3
30+
shell: bash
31+
32+
- name: sudo apt -y install python3-pip
33+
run: >
34+
sudo apt -y install python3-pip
35+
shell: bash
36+
37+
- name: pip install -r requirements.txt --break-system-packages
38+
run: >
39+
pip install -r requirements.txt --break-system-packages
2740
shell: bash
2841

2942
- name: Install Ansible collection dependencies

0 commit comments

Comments
 (0)