From 667c805b58863143766ed2ead7815813b5e848ff Mon Sep 17 00:00:00 2001 From: Benjamin Hays Date: Mon, 7 Oct 2024 19:17:34 -0400 Subject: [PATCH] Fix Ansible Install --- .gitea/workflows/ansible-lint.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ansible-lint.yml b/.gitea/workflows/ansible-lint.yml index c41b503..b7eb8d3 100644 --- a/.gitea/workflows/ansible-lint.yml +++ b/.gitea/workflows/ansible-lint.yml @@ -7,7 +7,10 @@ jobs: steps: - name: Install Ansible-Lint run: | - apt install -y python3-pip;pip3 install ansible-dev-tools + apt update -y + apt install python3-pip -y + python3 -m pip install ansible + python3 -m pip install ansible-lint - name: Checkout uses: actions/checkout@v3 with: