We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54dcfd7 commit 31e8e6eCopy full SHA for 31e8e6e
1 file changed
.github/actions/setup/action.yml
@@ -13,16 +13,19 @@ inputs:
13
runs:
14
using: composite
15
steps:
16
+ - uses: actions/setup-python@v5
17
+ with:
18
+ python-version: 3.11.x
19
+ # Cache Python dependencies
20
+ cache: pip
21
22
- name: Preparing Vault password file
23
run: |
24
echo "${{ inputs.vault-password }}" > "${{ inputs.vault-password-file }}"
25
shell: bash
26
27
- name: Install Python dependencies
- run: >
- sudo apt update &&
- sudo apt -y install python3 python3-pip &&
28
+ run: |
29
pip install -r requirements.txt
30
31
0 commit comments