From e8b83e622b0f3f44b13304b9da80162313edc714 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 6 Jun 2024 21:19:18 +0100 Subject: [PATCH] latest --- .github/workflows/molecule.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index d8a62c7..b743ffc 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -67,8 +67,13 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Install test dependencies + - name: Install test dependencies (specific version) run: pip3 install ansible-core==${{ matrix.ansible_version }} molecule-plugins[docker] jmespath + if: matrix.ansible_version != 'latest' + + - name: Install test dependencies (latest version) + run: pip3 install ansible-core molecule-plugins[docker] jmespath + if: matrix.ansible_version == 'latest' - name: Secrets to env uses: oNaiPs/secrets-to-env-action@v1.5