Skip to content

Commit 94ccbe1

Browse files
authored
Update Ansible collections (#390)
1 parent c9b0faa commit 94ccbe1

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

.github/workflows/molecule.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ jobs:
3737
if: "!(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
3838
run: pip3 install -r .github/workflows/requirements/requirements_molecule.txt
3939

40-
- name: Uninstall Ansible community distribution (temporary)
41-
if: "!(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
42-
run: pip3 uninstall -y ansible
43-
4440
- name: Install Ansible base dependencies
4541
if: "!(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
4642
run: ansible-galaxy install -r .github/workflows/requirements/requirements_ansible.yml
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
collections:
33
- name: community.general
4-
version: 2.3.0
4+
version: 2.5.1
55
- name: ansible.posix
66
version: 1.2.0
77
- name: community.docker
8-
version: 1.4.0
8+
version: 1.5.0

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FEATURES:
99
---
1010
collections:
1111
- name: community.general
12-
version: 2.3.0
12+
version: 2.5.1
1313
- name: ansible.posix
1414
version: 1.2.0
1515
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ With the advent of Ansible collections and the release of the [NGINX Core Ansibl
2727
---
2828
collections:
2929
- name: community.general
30-
version: 2.3.0
30+
version: 2.5.1
3131
- name: ansible.posix
3232
version: 1.2.0
3333
```

tasks/opensource/install-source.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297

298298
- name: Set NGINX stable version 1/2
299299
set_fact:
300-
nginx_version: "{{ nginx_versions.content | regex_search('stable[^<]*') | regex_replace('stable', 'release') }}"
300+
nginx_version: "{{ nginx_versions.content | regex_search('stable[^ ]*') | regex_replace('stable', 'release') }}"
301301
when: nginx_branch == "stable"
302302

303303
- name: Set NGINX stable version 2/2

0 commit comments

Comments
 (0)