From 17adb8cc2b22012368be65254c32e4e5f16bdb6a Mon Sep 17 00:00:00 2001 From: Matej Klima Date: Thu, 5 Mar 2026 11:46:54 +0100 Subject: [PATCH] fix: install missing dependency --- jenkins/trigger/action.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/jenkins/trigger/action.yaml b/jenkins/trigger/action.yaml index 8896e8f..49c1229 100644 --- a/jenkins/trigger/action.yaml +++ b/jenkins/trigger/action.yaml @@ -51,6 +51,14 @@ runs: echo "${{ steps.cert-from-vault.outputs.ca_chain }}" >> cert.pem echo "${{ steps.cert-from-vault.outputs.private_key }}" >> cert.pem shell: bash + - name: Setup python + uses: actions/setup-python@v6 + with: + python-version: "3.12" + - name: Install modules + shell: bash + run: | + pip install requests - name: Run python script id: python run: python "${{ github.action_path }}/jenkins_job_trigger.py" cert.pem $SERVER $FOLDER $JOB "$PARAMS"