From dae5c47959b789ca0c700b724f29762259787bdb Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Jun 2024 20:07:03 +0100 Subject: [PATCH] no synced file(s) with dgibbs64/repo-sync (#31) * no synced local '.github/workflows/galaxy.yml' with remote 'ansible/.github/workflows/galaxy.yml' * no synced local '.github/workflows/molecule.yml' with remote 'ansible/.github/workflows/molecule.yml' --- .github/workflows/galaxy.yml | 21 +++++++++++++++------ .github/workflows/molecule.yml | 21 +++++++++++++++------ 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/.github/workflows/galaxy.yml b/.github/workflows/galaxy.yml index c8cc9e4..004b560 100644 --- a/.github/workflows/galaxy.yml +++ b/.github/workflows/galaxy.yml @@ -39,26 +39,35 @@ jobs: matrix: distro: - amazonlinux2023 - - debian10 - debian11 - debian12 - - fedora37 - - fedora38 - fedora39 - fedora40 - opensuseleap15 - rockylinux8 - rockylinux9 - - ubuntu1804 - ubuntu2004 - ubuntu2204 - ubuntu2404 + ansible_core_version: + - 2.16 + - latest + exclude: + - distro: rockylinux8 + ansible_core_version: latest + - distro: opensuseleap15 + ansible_core_version: latest steps: - name: Checkout uses: actions/checkout@v4 - - name: Install test dependencies - run: pip3 install molecule-plugins[docker] jmespath + - name: Install test dependencies (specific version) + 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_core_version == 'latest' - name: Secrets to env uses: oNaiPs/secrets-to-env-action@v1.5 diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index 769f69a..8f6fd87 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -40,26 +40,35 @@ jobs: matrix: distro: - amazonlinux2023 - - debian10 - debian11 - debian12 - - fedora37 - - fedora38 - fedora39 - fedora40 - opensuseleap15 - rockylinux8 - rockylinux9 - - ubuntu1804 - ubuntu2004 - ubuntu2204 - ubuntu2404 + ansible_core_version: + - 2.16 + - latest + exclude: + - distro: rockylinux8 + ansible_core_version: latest + - distro: opensuseleap15 + ansible_core_version: latest steps: - name: Checkout uses: actions/checkout@v4 - - name: Install test dependencies - run: pip3 install molecule-plugins[docker] jmespath + - name: Install test dependencies (specific version) + 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_core_version == 'latest' - name: Secrets to env uses: oNaiPs/secrets-to-env-action@v1.5