From 42955a38fe071d2ac0fc2c99277832d5cb935d71 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 5 Jun 2024 13:32:05 -0600 Subject: [PATCH] revert min ansible version back to 2.14.0 ansible-lint 24.6.0 added a feature which allows you to specify alternate versions to use instead of the one in meta/runtime.yml by adding the config option `supported_ansible_also` to .ansible-lint https://ansible.readthedocs.io/projects/lint/rules/meta-runtime/#configuration Change this version to 2.14.0. There will be follow up PRs to add the option to all role .ansible-lint. This should allow both ansible-lint and ansible-test to pass. --- lsr_role2collection/runtime.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsr_role2collection/runtime.yml b/lsr_role2collection/runtime.yml index 1e85b01d..ce6befd7 100644 --- a/lsr_role2collection/runtime.yml +++ b/lsr_role2collection/runtime.yml @@ -1,2 +1,2 @@ --- -requires_ansible: ">=2.15.0" +requires_ansible: ">=2.14.0"