From 55c05756a53691d8bbc912bf4539f7657c877897 Mon Sep 17 00:00:00 2001 From: Patrick Thiel Date: Wed, 14 Oct 2020 17:11:31 -0400 Subject: [PATCH 1/2] dep: upgrade to ansible 2.10.2 --- .github/workflows/streisand.yml | 2 +- requirements.txt | 2 +- util/ansible_check.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/streisand.yml b/.github/workflows/streisand.yml index 0618b2c0f..4e6228a45 100644 --- a/.github/workflows/streisand.yml +++ b/.github/workflows/streisand.yml @@ -18,7 +18,7 @@ jobs: # 3.5 for older distro's like xenial, and 3.8 to test the latest python python-version: [3.5, 3.8] # Test ansible 2.8 and "latest" - ansible-version: [">=2.8,<2.9", ">=2.9"] + ansible-version: [">=2.10,<2.11", ">=2.10"] env_vars: - {RUN: "shellcheck yamlcheck syntax ci", SITE: "global_vars/default-site.yml"} - {RUN: "ci", SITE: "tests/site_vars/openconnect.yml"} diff --git a/requirements.txt b/requirements.txt index dbecfad21..e628fbe6f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ # Core with Azure dependencies # -ansible[azure]==2.8.4 +ansible[azure]==2.10.2 SecretStorage diff --git a/util/ansible_check.sh b/util/ansible_check.sh index 9ec5e69d3..4e7fa9a0c 100644 --- a/util/ansible_check.sh +++ b/util/ansible_check.sh @@ -5,7 +5,7 @@ # check_ansible checks that Ansible is installed on the local system # and that it is a supported version. function check_ansible() { - local REQUIRED_ANSIBLE_VERSION="2.8.4" + local REQUIRED_ANSIBLE_VERSION="2.10.2" if ! command -v ansible > /dev/null 2>&1; then echo " From ee91f1b4899da852dc0ba7e1153234143cc71f7e Mon Sep 17 00:00:00 2001 From: Patrick Thiel Date: Wed, 14 Oct 2020 17:15:48 -0400 Subject: [PATCH 2/2] correct ansible version in comment --- .github/workflows/streisand.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/streisand.yml b/.github/workflows/streisand.yml index 4e6228a45..8622a9b3b 100644 --- a/.github/workflows/streisand.yml +++ b/.github/workflows/streisand.yml @@ -17,7 +17,7 @@ jobs: matrix: # 3.5 for older distro's like xenial, and 3.8 to test the latest python python-version: [3.5, 3.8] - # Test ansible 2.8 and "latest" + # Test ansible 2.10 and "latest" ansible-version: [">=2.10,<2.11", ">=2.10"] env_vars: - {RUN: "shellcheck yamlcheck syntax ci", SITE: "global_vars/default-site.yml"}