Skip to content

Commit 0778bdc

Browse files
committed
Fix package sync on new Noble runners
1 parent 805b3d2 commit 0778bdc

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/actions/setup/action.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ 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
2116

2217
- name: Preparing Vault password file
2318
run: |
@@ -26,7 +21,7 @@ runs:
2621

2722
- name: Install Python dependencies
2823
run: |
29-
pip install -r requirements.txt
24+
sudo apt install python3 python3-pip && pip install -r requirements.txt
3025
shell: bash
3126

3227
- name: Install Ansible collection dependencies

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
setuptools
12
ansible<10
23
jmespath==0.10.0

0 commit comments

Comments
 (0)