From 75fc00b15b67fa0b8f7be41d6b0655bb4efc9971 Mon Sep 17 00:00:00 2001 From: Amir Date: Sat, 30 May 2026 09:59:02 -0400 Subject: [PATCH 1/2] Add testing for ansible 2.21 and allow for installation till 2.25 --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a622fcb..1865f97 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,6 +27,10 @@ jobs: ansible: "stable-2.20" image_tag: "nightly" lower_bounds: true + - python: "3.14" + ansible: "stable-2.21" + image_tag: "nightly" + lower_bounds: true steps: - uses: "actions/checkout@v6" - uses: "actions/cache@v5" From 866e48ec1e300d45c72234673a5296990fd0d4d2 Mon Sep 17 00:00:00 2001 From: Amir Date: Sat, 30 May 2026 10:01:39 -0400 Subject: [PATCH 2/2] Update Ansible version requirement to <2.25 --- meta/runtime.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/runtime.yml b/meta/runtime.yml index 794c09a..9acee2c 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -43,5 +43,5 @@ action_groups: - task - user - x509_cert_guard -requires_ansible: '>=2.16.0,<2.21' +requires_ansible: '>=2.16.0,<2.25' ...