From 549de87ab58e2151e2ecbb6df61ce2e78fc24f4f Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Thu, 1 Dec 2022 23:02:19 +0100 Subject: [PATCH] Switch CI from ubuntu-latest to ubuntu-20.04 to avoid problems with ansible-test from ansible-core 2.12, 2.13, 2.14. (#519) --- .github/workflows/ansible-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index 05e447bf..3ac170ed 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -25,7 +25,7 @@ jobs: matrix: ansible: - '2.11' - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Perform sanity testing uses: felixfontein/ansible-test-gh-action@integration-error-behavior @@ -36,7 +36,7 @@ jobs: testing-type: sanity units: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 name: EOL Units (Ⓐ${{ matrix.ansible }}) strategy: # As soon as the first unit test fails, cancel the others to free up the CI queue @@ -57,7 +57,7 @@ jobs: testing-type: units integration: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 name: EOL I (Ⓐ${{ matrix.ansible }}+${{ matrix.docker }}+py${{ matrix.python }}:${{ matrix.target }}) strategy: fail-fast: false