diff options
author | Rick Elrod <rick@elrod.me> | 2024-10-14 23:49:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-14 23:49:48 +0200 |
commit | dbe6fcc4e7c7024fc2b1c5a9172fd08c321175e7 (patch) | |
tree | 9f81e2023d6157008777ac043aaca425acae43cc /.github | |
parent | Adding podAntiAffinity (#15578) (diff) | |
download | awx-dbe6fcc4e7c7024fc2b1c5a9172fd08c321175e7.tar.xz awx-dbe6fcc4e7c7024fc2b1c5a9172fd08c321175e7.zip |
Fix CI for newer debian image (#15583)
* Fix CI for newer debian image
Signed-off-by: Rick Elrod <rick@elrod.me>
* Missed one
Signed-off-by: Rick Elrod <rick@elrod.me>
---------
Signed-off-by: Rick Elrod <rick@elrod.me>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 12 | ||||
-rw-r--r-- | .github/workflows/docs.yml | 4 | ||||
-rw-r--r-- | .github/workflows/label_pr.yml | 5 |
3 files changed, 20 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4674e51341..5087175710 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -129,6 +129,10 @@ jobs: with: show-progress: false + - uses: actions/setup-python@v5 + with: + python-version: '3.x' + - uses: ./.github/actions/run_awx_devel id: awx with: @@ -266,6 +270,10 @@ jobs: with: show-progress: false + - uses: actions/setup-python@v5 + with: + python-version: '3.x' + - uses: ./.github/actions/run_awx_devel id: awx with: @@ -336,6 +344,10 @@ jobs: with: show-progress: false + - uses: actions/setup-python@v5 + with: + python-version: '3.x' + - name: Upgrade ansible-core run: python3 -m pip install --upgrade ansible-core diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3d17201f3d..e520ffdae2 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,6 +12,10 @@ jobs: with: show-progress: false + - uses: actions/setup-python@v5 + with: + python-version: '3.x' + - name: install tox run: pip install tox diff --git a/.github/workflows/label_pr.yml b/.github/workflows/label_pr.yml index 94d3da7616..a5d5aa861f 100644 --- a/.github/workflows/label_pr.yml +++ b/.github/workflows/label_pr.yml @@ -33,7 +33,10 @@ jobs: with: show-progress: false - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.x' + - name: Install python requests run: pip install requests - name: Check if user is a member of Ansible org |