Skip to content

Commit 680a61f

Browse files
authored
Merge pull request #173 from cisagov/improvement/use-recent-version-of-ansible
Allow ansible versions greater than 6
2 parents f46945c + d8b06f3 commit 680a61f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

requirements-test.txt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@
66
# 2.10 or newer.
77
#
88
# We need at least version 6 to correctly identify Amazon Linux 2023
9-
# as using the dnf package manager.
10-
ansible>=6,<7
9+
# as using the dnf package manager, and version 8 is currently the
10+
# oldest supported version.
11+
#
12+
# We have tested against version 9. We want to avoid automatically
13+
# jumping to another major version without testing, since there are
14+
# often breaking changes across major versions. This is the reason
15+
# for the upper bound.
16+
ansible>=8,<10
1117
# With the release of molecule v5 there were some breaking changes so
1218
# we need to pin at v5 or newer. However, v5.0.0 had an internal
1319
# dependency issue so we must use the bugfix release as the actual

0 commit comments

Comments
 (0)