OpenSCAP #53
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
# This action checks OpenSCAP configs every Monday at 5:00 UTC. | |
name: OpenSCAP | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 5 * * 1" | |
jobs: | |
update-openscap: | |
name: "Update OpenSCAP configs" | |
if: github.repository == 'osbuild/image-builder-crc' | |
runs-on: ubuntu-latest | |
container: | |
image: registry.fedoraproject.org/fedora:39 | |
steps: | |
- name: Install dependencies | |
run: dnf install -y tar gcc git-core go openscap scap-security-guide | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Mark the working directory as safe for git | |
run: git config --global --add safe.directory "$(pwd)" | |
- name: Run OpenSCAP config generation | |
run: go run ./cmd/oscap ./distributions | |
- name: Check if there are any changes | |
run: | | |
if [ "$(git status --porcelain)" ]; then | |
echo | |
echo "OpenSCAP configs are up-to-date" | |
exit "0" | |
fi | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: update-openscap | |
delete-branch: true | |
title: "distributions: regenerate OpenSCAP configs" | |
commit-message: "distributions: regenerate OpenSCAP configs" | |
body: Update OpenSCAP configs | |
token: ${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }} | |
author: schutzbot <schutzbot@gmail.com> |