Skip to content

Commit 31e8e6e

Browse files
committed
Just slap in setuptools
1 parent 54dcfd7 commit 31e8e6e

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/actions/setup/action.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,19 @@ inputs:
1313
runs:
1414
using: composite
1515
steps:
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: 3.11.x
19+
# Cache Python dependencies
20+
cache: pip
1621

1722
- name: Preparing Vault password file
1823
run: |
1924
echo "${{ inputs.vault-password }}" > "${{ inputs.vault-password-file }}"
2025
shell: bash
2126

2227
- name: Install Python dependencies
23-
run: >
24-
sudo apt update &&
25-
sudo apt -y install python3 python3-pip &&
28+
run: |
2629
pip install -r requirements.txt
2730
shell: bash
2831

0 commit comments

Comments
 (0)