diff --git a/.gitea/workflows/pr-cloudflare-docker-deploy.yml b/.gitea/workflows/pr-cloudflare-docker-deploy.yml index 08d564ab..ffec5bd0 100644 --- a/.gitea/workflows/pr-cloudflare-docker-deploy.yml +++ b/.gitea/workflows/pr-cloudflare-docker-deploy.yml @@ -62,10 +62,15 @@ jobs: restore-keys: | ${{ runner.os }}-ansible- # Install Ansible - - name: Install Ansible & Dependencies - uses: https://github.com/mattjamesaus/setup-ansible@v1.0.1 + - name: Set up Python + uses: actions/setup-python@v2 with: - version: "11.1.0" + python-version: '3.x' + + - name: Install Ansible + run: | + python3 -m pip install --upgrade pip + pip3 install ansible # Install Galaxy Collections - name: Install Galaxy Collections if: steps.cache-ansible-galaxy-collections.outputs.cache-hit != 'true'