Skip to content

Commit ec97936

Browse files
authored
Merge pull request #873 from dev-sec/renovate/ansible-ansible-lint-digest
chore(deps): update ansible/ansible-lint digest to 06f616d
2 parents acccf3f + 96e7d7a commit ec97936

File tree

3 files changed

+23
-13
lines changed

3 files changed

+23
-13
lines changed

.github/workflows/ansible-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3030

3131
- name: Lint Ansible Playbook
32-
uses: ansible/ansible-lint@e98f9b38769d45cbe3c55a23b2eb25631babe7c4 # v25
32+
uses: ansible/ansible-lint@06f616d6e86e9ce4c74393318d1cbb2d016af413 # v25

molecule/ssh_hardening/prepare.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,32 @@
1212
ansible_python_interpreter: /usr/bin/python3
1313
when: ansible_facts.distribution == 'Fedora'
1414

15-
- name: Install packages # noqa ignore-errors
15+
- name: Install dnf packages # noqa ignore-errors
1616
ansible.builtin.dnf:
1717
name:
1818
- openssh-clients
1919
- openssh-server
20+
state: present
21+
update_cache: true
22+
ignore_errors: true
23+
24+
- name: Install libselinux-python # noqa ignore-errors
25+
ansible.builtin.dnf:
26+
name:
2027
- libselinux-python
2128
state: present
2229
update_cache: true
2330
ignore_errors: true
2431

25-
- name: Install packages # noqa ignore-errors
32+
- name: Install procps-ng # noqa ignore-errors
2633
ansible.builtin.dnf:
2734
name:
28-
- openssh-clients
29-
- openssh-server
3035
- procps-ng
3136
state: present
3237
update_cache: true
3338
ignore_errors: true
3439

35-
- name: Install packages # noqa ignore-errors
40+
- name: Install apt packages # noqa ignore-errors
3641
ansible.builtin.apt:
3742
name:
3843
- openssh-client
@@ -47,7 +52,7 @@
4752
changed_when: false
4853
when: ansible_facts.os_family == 'Suse'
4954

50-
- name: Install packages
55+
- name: Install packages on SuSE
5156
community.general.zypper:
5257
name:
5358
- openssh

molecule/ssh_hardening_custom_tests/prepare.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,32 @@
1212
ansible_python_interpreter: /usr/bin/python3
1313
when: ansible_facts.distribution == 'Fedora'
1414

15-
- name: Install packages # noqa ignore-errors
15+
- name: Install dnf packages # noqa ignore-errors
1616
ansible.builtin.dnf:
1717
name:
1818
- openssh-clients
1919
- openssh-server
20+
state: present
21+
update_cache: true
22+
ignore_errors: true
23+
24+
- name: Install libselinux-python # noqa ignore-errors
25+
ansible.builtin.dnf:
26+
name:
2027
- libselinux-python
2128
state: present
2229
update_cache: true
2330
ignore_errors: true
2431

25-
- name: Install packages # noqa ignore-errors
32+
- name: Install procps-ng # noqa ignore-errors
2633
ansible.builtin.dnf:
2734
name:
28-
- openssh-clients
29-
- openssh-server
3035
- procps-ng
3136
state: present
3237
update_cache: true
3338
ignore_errors: true
3439

35-
- name: Install packages # noqa ignore-errors
40+
- name: Install apt packages # noqa ignore-errors
3641
ansible.builtin.apt:
3742
name:
3843
- openssh-client
@@ -47,7 +52,7 @@
4752
changed_when: false
4853
when: ansible_facts.os_family == 'Suse'
4954

50-
- name: Install packages
55+
- name: Install packages on SuSE
5156
community.general.zypper:
5257
name:
5358
- openssh

0 commit comments

Comments
 (0)