Skip to content

Commit 7cee2e8

Browse files
committed
Make 2.17 the min Ansible version
1 parent 5ebc615 commit 7cee2e8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ansible-integration-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
# and test against the minimum version of Python supported by both. If/when we change
2626
# the integration tests to support parallelism we can revisit.
2727
ansible_version:
28-
- stable-2.16
2928
- stable-2.17
29+
- stable-2.18
3030
steps:
3131
- name: check out code
3232
uses: actions/checkout@v4
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Python
3636
uses: actions/setup-python@v4
3737
with:
38-
python-version: '3.10' # this is the minimum version required for Ansible 2.16
38+
python-version: '3.11' # this is the minimum version required for Ansible 2.17
3939
- name: Install dependencies
4040
run: pip install -r requirements.txt
4141
- name: Install ansible-base (${{ matrix.ansible_version }})

.github/workflows/ansible-test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
# of ansible-core and each major version of Python supported by both.
1414
# https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix
1515
ansible_version:
16-
- stable-2.16
1716
- stable-2.17
17+
- stable-2.18
1818
python_version:
19-
- '3.10'
2019
- '3.11'
2120
- '3.12'
21+
- '3.13'
2222
steps:
2323
- name: check out code
2424
uses: actions/checkout@v4
@@ -46,12 +46,12 @@ jobs:
4646
strategy:
4747
matrix:
4848
ansible_version:
49-
- stable-2.16
5049
- stable-2.17
50+
- stable-2.18
5151
python_version:
52-
- '3.10'
5352
- '3.11'
5453
- '3.12'
54+
- '3.13'
5555
steps:
5656
- name: check out code
5757
uses: actions/checkout@v4

meta/runtime.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
requires_ansible: ">=2.16.0"
2+
requires_ansible: ">=2.17.0"
33

44
action_groups:
55
gcp:

0 commit comments

Comments
 (0)