mirror of
https://github.com/dev-sec/ansible-collection-hardening
synced 2024-11-10 09:14:18 +00:00
chore(deps): update dependency ansible-core to v2.17.2 (#756)
* chore(deps): update dependency ansible-core to v2.17.2 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Downgrade Ansible version for Rocky 8 Signed-off-by: Martin Schurz <Martin.Schurz@telekom.de> * Downgrade Ansible version for Rocky 8 Signed-off-by: Martin Schurz <Martin.Schurz@telekom.de> --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Martin Schurz <Martin.Schurz@telekom.de> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Martin Schurz <Martin.Schurz@telekom.de>
This commit is contained in:
parent
3e67f91dbd
commit
ea2fe100b5
6 changed files with 31 additions and 1 deletions
6
.github/workflows/mysql_hardening.yml
vendored
6
.github/workflows/mysql_hardening.yml
vendored
|
@ -68,6 +68,12 @@ jobs:
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
working-directory: ansible_collections/devsec/hardening
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
|
||||||
|
- name: Downgrade Ansible for Rocky 8 tests
|
||||||
|
run: |
|
||||||
|
pip install "ansible-core<2.17"
|
||||||
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
if: matrix.molecule_distro == 'rocky8'
|
||||||
|
|
||||||
# that was a hard one to fix. robert did it thankfully
|
# that was a hard one to fix. robert did it thankfully
|
||||||
# https://github.com/robertdebock/ansible-role-mysql/commit/7562e99099b06282391ab7ed102b393a0406d212
|
# https://github.com/robertdebock/ansible-role-mysql/commit/7562e99099b06282391ab7ed102b393a0406d212
|
||||||
- name: disable apparmor on debian systems
|
- name: disable apparmor on debian systems
|
||||||
|
|
6
.github/workflows/nginx_hardening.yml
vendored
6
.github/workflows/nginx_hardening.yml
vendored
|
@ -67,6 +67,12 @@ jobs:
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
working-directory: ansible_collections/devsec/hardening
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
|
||||||
|
- name: Downgrade Ansible for Rocky 8 tests
|
||||||
|
run: |
|
||||||
|
pip install "ansible-core<2.17"
|
||||||
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
if: matrix.molecule_distro == 'rocky8'
|
||||||
|
|
||||||
# Molecule has problems detecting the proper location for installing roles
|
# Molecule has problems detecting the proper location for installing roles
|
||||||
# https://github.com/ansible/molecule/issues/3806
|
# https://github.com/ansible/molecule/issues/3806
|
||||||
# we do not set a custom role path, but the automatically determined install path used is not compatible with the location molecule expects the role
|
# we do not set a custom role path, but the automatically determined install path used is not compatible with the location molecule expects the role
|
||||||
|
|
6
.github/workflows/os_hardening.yml
vendored
6
.github/workflows/os_hardening.yml
vendored
|
@ -68,6 +68,12 @@ jobs:
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
working-directory: ansible_collections/devsec/hardening
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
|
||||||
|
- name: Downgrade Ansible for Rocky 8 tests
|
||||||
|
run: |
|
||||||
|
pip install "ansible-core<2.17"
|
||||||
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
if: matrix.molecule_distro == 'rocky8'
|
||||||
|
|
||||||
- name: Test with molecule
|
- name: Test with molecule
|
||||||
run: |
|
run: |
|
||||||
if [ "$MOLECULE_DISTRO" = "opensuse_tumbleweed" ]; then
|
if [ "$MOLECULE_DISTRO" = "opensuse_tumbleweed" ]; then
|
||||||
|
|
6
.github/workflows/ssh_hardening.yml
vendored
6
.github/workflows/ssh_hardening.yml
vendored
|
@ -68,6 +68,12 @@ jobs:
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
working-directory: ansible_collections/devsec/hardening
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
|
||||||
|
- name: Downgrade Ansible for Rocky 8 tests
|
||||||
|
run: |
|
||||||
|
pip install "ansible-core<2.17"
|
||||||
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
if: matrix.molecule_distro == 'rocky8'
|
||||||
|
|
||||||
- name: Test with molecule
|
- name: Test with molecule
|
||||||
run: |
|
run: |
|
||||||
if [ "$MOLECULE_DISTRO" = "opensuse_tumbleweed" ]; then
|
if [ "$MOLECULE_DISTRO" = "opensuse_tumbleweed" ]; then
|
||||||
|
|
|
@ -68,6 +68,12 @@ jobs:
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
working-directory: ansible_collections/devsec/hardening
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
|
||||||
|
- name: Downgrade Ansible for Rocky 8 tests
|
||||||
|
run: |
|
||||||
|
pip install "ansible-core<2.17"
|
||||||
|
working-directory: ansible_collections/devsec/hardening
|
||||||
|
if: matrix.molecule_distro == 'rocky8'
|
||||||
|
|
||||||
- name: Test with molecule
|
- name: Test with molecule
|
||||||
run: |
|
run: |
|
||||||
if [ "$MOLECULE_DISTRO" = "opensuse_tumbleweed" ]; then
|
if [ "$MOLECULE_DISTRO" = "opensuse_tumbleweed" ]; then
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
molecule
|
molecule
|
||||||
molecule-plugins[docker]
|
molecule-plugins[docker]
|
||||||
yamllint
|
yamllint
|
||||||
ansible-core==2.16.5
|
ansible-core==2.17.2
|
||||||
ansible-lint
|
ansible-lint
|
||||||
docker
|
docker
|
||||||
flake8
|
flake8
|
||||||
|
|
Loading…
Reference in a new issue