From 1ee4ccb5fc8ccddc80acfe691a5fb6c97f78a2b3 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Tue, 15 Oct 2024 14:22:52 -0600 Subject: [PATCH] ci: ansible-test action now requires ansible-core version The ansible-test github action does not use a supported version of ansible-core by default. https://github.com/ansible-community/ansible-test-gh-action?tab=readme-ov-file#ansible-core-version We have to set it in our action. Using `stable-2.17` as that is the latest stable version. Signed-off-by: Rich Megginson --- .github/workflows/ansible-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index e170f5e5..4dbdaa2d 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -44,4 +44,5 @@ jobs: uses: ansible-community/ansible-test-gh-action@release/v1 with: testing-type: sanity # wokeignore:rule=sanity + ansible-core-version: stable-2.17 collection-src-directory: ${{ github.workspace }}/.tox/ansible_collections/${{ env.LSR_ROLE2COLL_NAMESPACE }}/${{ env.LSR_ROLE2COLL_NAME }}