Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ignore] Force Ansible v2.14+ and update pipeline versions #65

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ansible: [v2.13.13, v2.14.11, v2.15.5, stable-2.16]
ansible: [v2.14.13, v2.15.8, v2.16.2, stable-2.16]
steps:
- name: Check out code
uses: actions/checkout@v3
Expand Down Expand Up @@ -65,8 +65,8 @@ jobs:
with:
python-version: ${{ env.python_version }}

- name: Install ansible-base (v2.15.5)
run: pip install https://github.com/ansible/ansible/archive/v2.15.5.tar.gz --disable-pip-version-check
- name: Install ansible-base (v2.15.8)
run: pip install https://github.com/ansible/ansible/archive/v2.15.8.tar.gz --disable-pip-version-check

- name: Download migrated collection artifacts
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ansible: [v2.13.13, v2.14.11, v2.15.5, stable-2.16]
ansible: [v2.14.13, v2.15.8, v2.16.2, stable-2.16]
steps:
- name: Set up Python ${{ env.python_version }}
uses: actions/setup-python@v4
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ansible: [v2.13.13, v2.14.11, v2.15.5, stable-2.16]
ansible: [v2.14.13, v2.15.8, v2.16.2, stable-2.16]
python-version: ['3.10']
steps:
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -195,8 +195,8 @@ jobs:
with:
python-version: ${{ env.python_version }}

- name: Install ansible-base (v2.15.5)
run: pip install https://github.com/ansible/ansible/archive/v2.15.5.tar.gz --disable-pip-version-check
- name: Install ansible-base (v2.15.8)
run: pip install https://github.com/ansible/ansible/archive/v2.15.8.tar.gz --disable-pip-version-check

- name: Install coverage (v4.5.4)
run: pip install coverage==4.5.4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Modules supporting new features introduced in ND API in specific ND versions mig
*Note: This collection is not compatible with versions of Ansible before v2.8.*

## Requirements
- Ansible v2.13 or newer
- Ansible v2.14 or newer

## Install
Ansible must be installed
Expand Down
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
requires_ansible: '>=2.13.1'
requires_ansible: '>=2.14.0'
action_groups:
all:
- nd_backup
Expand Down
Loading