Skip to content

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
package
5050
5151
- name: Install ansible
52-
run: pip3 install --user ansible==2.9.27
52+
run: pip3 install --user ansible==2.10.17
5353

5454
- name: Run deploy.sh
5555
env:
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Ansible inventory file
2-
# See: https://docs.ansible.com/ansible/2.9/user_guide/intro_inventory.html
2+
# See: https://docs.ansible.com/ansible/2.10/user_guide/intro_inventory.html
33

44
[prod]
55
my-stamps.ru
66

77
[all:vars]
8-
# https://docs.ansible.com/ansible/2.9/reference_appendices/python_3_support.html#using-python-3-on-the-managed-machines-with-commands-and-playbooks
9-
# https://docs.ansible.com/ansible/2.9/reference_appendices/interpreter_discovery.html
8+
# https://docs.ansible.com/ansible/2.10/reference_appendices/python_3_support.html#using-python-3-on-the-managed-machines-with-commands-and-playbooks
9+
# https://docs.ansible.com/ansible/2.10/reference_appendices/interpreter_discovery.html
1010
ansible_python_interpreter=/usr/bin/python3

src/main/scripts/ci/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ cleanup() {
2424
trap 'cleanup' EXIT SIGHUP SIGINT SIGTERM
2525

2626
# Disable host key checking to suppress interactive prompt.
27-
# See: https://docs.ansible.com/ansible/2.9/user_guide/connection_details.html#host-key-checking
27+
# See: https://docs.ansible.com/ansible/2.10/user_guide/connection_details.html#managing-host-key-checking
2828
export ANSIBLE_HOST_KEY_CHECKING=False
2929

3030
# Make the output of a failed task human readable.
31-
# See: https://docs.ansible.com/ansible/2.9/reference_appendices/config.html#envvar-ANSIBLE_STDOUT_CALLBACK
31+
# See: https://docs.ansible.com/ansible/2.10/reference_appendices/config.html#envvar-ANSIBLE_STDOUT_CALLBACK
3232
export ANSIBLE_STDOUT_CALLBACK=debug
3333

3434
if [ -z "${VAULT_PASSWORD:-}" ]; then

0 commit comments

Comments
 (0)