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"