Skip to content

Commit ab9c312

Browse files
authored
Merge pull request #25 from gooddata/fix-missing-requests-dependency
fix: install missing dependency
2 parents bd0e46e + 17adb8c commit ab9c312

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

jenkins/trigger/action.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ runs:
5151
echo "${{ steps.cert-from-vault.outputs.ca_chain }}" >> cert.pem
5252
echo "${{ steps.cert-from-vault.outputs.private_key }}" >> cert.pem
5353
shell: bash
54+
- name: Setup python
55+
uses: actions/setup-python@v6
56+
with:
57+
python-version: "3.12"
58+
- name: Install modules
59+
shell: bash
60+
run: |
61+
pip install requests
5462
- name: Run python script
5563
id: python
5664
run: python "${{ github.action_path }}/jenkins_job_trigger.py" cert.pem $SERVER $FOLDER $JOB "$PARAMS"

0 commit comments

Comments
 (0)