Bump ansible-core from 2.17.5 to 2.17.6 #608
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "devsec.os_hardening VM" | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
push: | |
branches: [master] | |
paths: | |
- 'roles/os_hardening/**' | |
- 'molecule/os_hardening_vm/**' | |
- '.github/workflows/os_hardening_vm.yml' | |
- 'requirements.txt' | |
pull_request: | |
branches: [master] | |
paths: | |
- 'roles/os_hardening/**' | |
- 'molecule/os_hardening_vm/**' | |
- '.github/workflows/os_hardening_vm.yml' | |
- 'requirements.txt' | |
schedule: | |
- cron: '0 6 * * 2' | |
concurrency: | |
group: >- | |
${{ github.workflow }}-${{ | |
github.event.pull_request.number || github.sha | |
}} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: self-hosted | |
env: | |
PY_COLORS: 1 | |
ANSIBLE_FORCE_COLOR: 1 | |
strategy: | |
fail-fast: false | |
matrix: | |
molecule_distro: | |
- generic/centos9s | |
- generic/rocky8 | |
- generic/rocky9 | |
- fedora/39-cloud-base | |
- fedora/40-cloud-base | |
- generic/ubuntu2004 | |
- generic/ubuntu2204 | |
- alvistack/ubuntu-24.04 | |
- generic/debian11 | |
- generic/debian12 | |
- generic/opensuse15 | |
- generic/arch | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
with: | |
path: ansible_collections/devsec/hardening | |
submodules: true | |
- name: Install dependencies | |
run: | | |
source ~/.venv/ansible-collection-hardening/bin/activate | |
python -m pip install --no-cache-dir --upgrade pip | |
pip install -r requirements.txt | |
pip install python-vagrant | |
working-directory: ansible_collections/devsec/hardening | |
- name: Downgrade Ansible for Rocky 8 tests | |
run: | | |
source ~/.venv/ansible-collection-hardening/bin/activate | |
pip install "ansible-core<2.17" | |
working-directory: ansible_collections/devsec/hardening | |
if: matrix.molecule_distro == 'generic/rocky8' || matrix.molecule_distro == 'generic/opensuse15' | |
- name: Update Vagrant Box | |
run: | | |
vagrant box update --box ${{ matrix.molecule_distro }} || true | |
- name: Test with molecule | |
run: | | |
source ~/.venv/ansible-collection-hardening/bin/activate | |
molecule test -s os_hardening_vm | |
env: | |
MOLECULE_DISTRO: ${{ matrix.molecule_distro }} | |
working-directory: ansible_collections/devsec/hardening |