Make 2.17 the min Ansible version

This commit is contained in:
Chris Hawk 2025-01-10 15:01:28 -08:00
commit 7cee2e87b0
3 changed files with 7 additions and 7 deletions

View file

@ -25,8 +25,8 @@ jobs:
# and test against the minimum version of Python supported by both. If/when we change
# the integration tests to support parallelism we can revisit.
ansible_version:
- stable-2.16
- stable-2.17
- stable-2.18
steps:
- name: check out code
uses: actions/checkout@v4
@ -35,7 +35,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10' # this is the minimum version required for Ansible 2.16
python-version: '3.11' # this is the minimum version required for Ansible 2.17
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install ansible-base (${{ matrix.ansible_version }})