From 2698b08951a8b4011d373253a06b9719f633109d Mon Sep 17 00:00:00 2001 From: Jeff Ohrstrom Date: Thu, 29 Feb 2024 13:04:56 -0500 Subject: [PATCH] only install ansible-core and use python 3.x (#233) --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5f80707..2613683 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,10 +23,10 @@ jobs: - name: Set up Python 3. uses: actions/setup-python@v5 with: - python-version: '3.10' + python-version: '3.x' - name: Install Ansible. - run: pip3 install ansible ansible-base six + run: pip3 install ansible-core - name: Trigger a new import on Galaxy. run: ansible-galaxy role import --api-key ${{ secrets.OSC_ROBOT_GALAXY_TOKEN }} OSC ood-ansible