ci: Ansible version must be string, not float [citest_skip]

The ansible version is specified as a YAML floating point number.  This causes
`2.20` to be converted to `2.2` which breaks platforms that use ansible 2.20.
Ensure it and similar version numbers are specified in YAML as strings.

Signed-off-by: Rich Megginson <rmeggins@redhat.com>
This commit is contained in:
Rich Megginson
2026-02-17 15:09:46 -05:00
committed by Richard Megginson
parent f913d846bb
commit 7318859c23
2 changed files with 11 additions and 9 deletions
+3 -2
View File
@@ -10,9 +10,10 @@ provision:
- name: managed-node2
role: managed_node
environment:
SR_ANSIBLE_VER: 2.17
# ensure versions are strings!
SR_ANSIBLE_VER: "2.17"
SR_REPO_NAME: aide
SR_PYTHON_VERSION: 3.12
SR_PYTHON_VERSION: "3.12"
SR_ONLY_TESTS: "" # tests_default.yml
SR_TEST_LOCAL_CHANGES: true
SR_PR_NUM: ""