Skip to content

chore(deps): update ansible/ansible-lint digest to 06f616d #873

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Lint Ansible Playbook
uses: ansible/ansible-lint@e98f9b38769d45cbe3c55a23b2eb25631babe7c4 # v25
uses: ansible/ansible-lint@06f616d6e86e9ce4c74393318d1cbb2d016af413 # v25
17 changes: 11 additions & 6 deletions molecule/ssh_hardening/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,32 @@
ansible_python_interpreter: /usr/bin/python3
when: ansible_facts.distribution == 'Fedora'

- name: Install packages # noqa ignore-errors
- name: Install dnf packages # noqa ignore-errors
ansible.builtin.dnf:
name:
- openssh-clients
- openssh-server
state: present
update_cache: true
ignore_errors: true

- name: Install libselinux-python # noqa ignore-errors
ansible.builtin.dnf:
name:
- libselinux-python
state: present
update_cache: true
ignore_errors: true

- name: Install packages # noqa ignore-errors
- name: Install procps-ng # noqa ignore-errors
ansible.builtin.dnf:
name:
- openssh-clients
- openssh-server
- procps-ng
state: present
update_cache: true
ignore_errors: true

- name: Install packages # noqa ignore-errors
- name: Install apt packages # noqa ignore-errors
ansible.builtin.apt:
name:
- openssh-client
Expand All @@ -47,7 +52,7 @@
changed_when: false
when: ansible_facts.os_family == 'Suse'

- name: Install packages
- name: Install packages on SuSE
community.general.zypper:
name:
- openssh
Expand Down
17 changes: 11 additions & 6 deletions molecule/ssh_hardening_custom_tests/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,32 @@
ansible_python_interpreter: /usr/bin/python3
when: ansible_facts.distribution == 'Fedora'

- name: Install packages # noqa ignore-errors
- name: Install dnf packages # noqa ignore-errors
ansible.builtin.dnf:
name:
- openssh-clients
- openssh-server
state: present
update_cache: true
ignore_errors: true

- name: Install libselinux-python # noqa ignore-errors
ansible.builtin.dnf:
name:
- libselinux-python
state: present
update_cache: true
ignore_errors: true

- name: Install packages # noqa ignore-errors
- name: Install procps-ng # noqa ignore-errors
ansible.builtin.dnf:
name:
- openssh-clients
- openssh-server
- procps-ng
state: present
update_cache: true
ignore_errors: true

- name: Install packages # noqa ignore-errors
- name: Install apt packages # noqa ignore-errors
ansible.builtin.apt:
name:
- openssh-client
Expand All @@ -47,7 +52,7 @@
changed_when: false
when: ansible_facts.os_family == 'Suse'

- name: Install packages
- name: Install packages on SuSE
community.general.zypper:
name:
- openssh
Expand Down