From 7873a1012be4fe2a18c93b78cbbb07e440f7538b Mon Sep 17 00:00:00 2001 From: Ditmar Visser Date: Wed, 11 Jun 2025 17:20:40 +0000 Subject: [PATCH] fix: install ansible using pip --- .gitea/workflows/provision_configure.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/provision_configure.yaml b/.gitea/workflows/provision_configure.yaml index 8c38343..2715b98 100644 --- a/.gitea/workflows/provision_configure.yaml +++ b/.gitea/workflows/provision_configure.yaml @@ -74,8 +74,10 @@ jobs: - name: Install Ansible shell: bash run: | - apt update - apt install -y ansible + apt update -y + apt install python3-pip -y + python3 -m pip install ansible + python3 -m pip install ansible-lint - name: Install Ansible Roles run: |