From b6dfd58b0475878bbd9bf4a570eab5b19267a839 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 6 Jun 2024 21:28:11 +0100 Subject: [PATCH] ansile_core_version --- .github/workflows/molecule.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index 005df00..e8edc71 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -54,28 +54,27 @@ jobs: - ubuntu2004 - ubuntu2204 - ubuntu2404 - ansible_version: - - 2.13 + ansible_core_version: - 2.16 - latest exclude: - distro: rockylinux8 - ansible_version: latest + ansible_core_version: latest - distro: ubuntu1804 - ansible_version: latest + ansible_core_version: latest - distro: opensuseleap15 - ansible_version: latest + ansible_core_version: latest steps: - name: Checkout uses: actions/checkout@v4 - name: Install test dependencies (specific version) - run: pip3 install ansible-core==${{ matrix.ansible_version }} molecule-plugins[docker] jmespath - if: matrix.ansible_version != 'latest' + run: pip3 install ansible-core==${{ matrix.ansible_core_version }} molecule-plugins[docker] jmespath + if: matrix.ansible_core_version != 'latest' - name: Install test dependencies (latest version) run: pip3 install ansible-core molecule-plugins[docker] jmespath - if: matrix.ansible_version == 'latest' + if: matrix.ansible_core_version == 'latest' - name: Secrets to env uses: oNaiPs/secrets-to-env-action@v1.5