Skip to content

Commit 0b69ba6

Browse files
chore: fix missing requests lib
1 parent a990cae commit 0b69ba6

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/actions/rundeck/action.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ runs:
4444
echo "${{ steps.cert-from-vault.outputs.ca_chain }}" >> cert.pem
4545
echo "${{ steps.cert-from-vault.outputs.private_key }}" >> cert.pem
4646
shell: bash
47+
- name: Setup python
48+
uses: actions/setup-python@v6
49+
with:
50+
python-version: "3.12"
51+
- name: Install modules
52+
shell: bash
53+
run: |
54+
pip install requests
4755
- name: Run python script
4856
id: python
4957
run: |

0 commit comments

Comments
 (0)