Skip to content

Commit d36338c

Browse files
Bump ansible-lint from 6.16.2 to 6.17.1 in /.github/workflows/requirements (#340)
1 parent b060d8a commit d36338c

File tree

12 files changed

+10
-8
lines changed

12 files changed

+10
-8
lines changed

.ansible-lint

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
22
offline: true
3+
exclude_paths:
4+
- .github/
35
skip_list:
46
- yaml[line-length]

.github/workflows/molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- cleanup_module
4848
- default
4949
- plus
50-
- stable_push
50+
- push
5151
needs: ansible-lint
5252
steps:
5353
- name: Check out the codebase
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ansible-core==2.15.0
22
# ansible-compat==3.0.2
33
yamllint==1.32.0
4-
ansible-lint==6.16.2
4+
ansible-lint==6.17.1

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ BUG FIXES:
1313
CI/CD:
1414

1515
- Split Ansible Lint into its own GitHub Actions job since Molecule no longer runs linters natively.
16+
- Remove the "stable" part of the `stable_push` Molecule scenario since installing the NGINX stable branch is already tested by the core NGINX Ansible role.
1617
- Replace `molecule[docker]` with `molecule` and `molecule-plugins[docker]`.
1718
- Explicitly set the `ansible-compat` version (commented out for the time being whilst waiting for a new release of Molecule).
1819
- Add pre-releases to Release Drafter.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Working functional playbook examples can be found in the **[`molecule/`](https:/
175175
| **[`cleanup_module/converge.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/molecule/cleanup_module/converge.yml)** | Cleanup an NGINX config and configure NGINX supported modules |
176176
| **[`default/converge.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/molecule/default/converge.yml)** | Use the NGINX config templating variables to create an NGINX config |
177177
| **[`plus/converge.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/molecule/plus/converge.yml)** | Use the NGINX config templating variables to create an NGINX Plus config |
178-
| **[`stable_push/converge.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/molecule/stable_push/converge.yml)** | Install NGINX using the stable branch and push a preexisting config from your system to your NGINX instance |
178+
| **[`push/converge.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/molecule/stable_push/converge.yml)** | Push a preexisting config from your system to your NGINX instance |
179179

180180
Do note that if you install this repository via Ansible Galaxy, you will have to replace the role variable in the sample playbooks from `ansible-role-nginx-config` to `nginxinc.nginx_config`.
181181

molecule/cleanup_module/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
tasks:
55
- name: Configure NGINX
66
ansible.builtin.include_role:
7-
name: ansible-role-nginx-config
7+
name: nginxinc.nginx_config
88
vars:
99
nginx_config_debug_output: true
1010

molecule/default/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
tasks:
55
- name: Configure NGINX
66
ansible.builtin.include_role:
7-
name: ansible-role-nginx-config
7+
name: nginxinc.nginx_config
88
vars:
99
nginx_config_debug_output: true
1010

molecule/plus/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
tasks:
55
- name: Configure NGINX
66
ansible.builtin.include_role:
7-
name: ansible-role-nginx-config
7+
name: nginxinc.nginx_config
88
vars:
99
nginx_config_debug_output: true
1010

molecule/stable_push/converge.yml renamed to molecule/push/converge.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
tasks:
55
- name: Configure NGINX
66
ansible.builtin.include_role:
7-
name: ansible-role-nginx-config
7+
name: nginxinc.nginx_config
88
vars:
99
nginx_config_debug_output: true
1010

11-
nginx_branch: stable
1211
nginx_config_upload_enable: true
1312
nginx_config_upload:
1413
- src: ../common/files/snippets/location_snippet.conf
File renamed without changes.

0 commit comments

Comments
 (0)