From 9d73130c3f3eab911b02accc44a7634388b8fdd0 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 5 Jun 2024 14:08:58 -0600 Subject: [PATCH] ci: Add supported_ansible_also to .ansible-lint This fixes the breakage of ansible-test. We want to advertise support for ansible 2.14 since some of our collections will be supported for a long time on this version. The latest version of ansible-lint requires 2.15 in meta/runtime.yml, but it also adds support for a way to tell ansible-lint other versions which are acceptable, using the new `supported_ansible_also` configuration option in .ansible-lint With this fix, we can support both the latest version of ansible-test and ansible-lint. See https://github.com/linux-system-roles/auto-maintenance/pull/341 for more information. Signed-off-by: Rich Megginson --- .ansible-lint | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ansible-lint b/.ansible-lint index e99af348..5afa71cc 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -22,3 +22,5 @@ exclude_paths: - examples/roles/ mock_roles: - linux-system-roles.storage +supported_ansible_also: + - "2.14.0"