fixed action versions #268
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: Check POLICIES.md is up-to-date | |
on: [push, pull_request] | |
jobs: | |
konstraint_doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Generate konstraint docs | |
uses: redhat-cop/github-actions/confbatstest@v4 | |
with: | |
raw: konstraint doc -o POLICIES.md | |
- name: Check if there are changes to POLICIES.md | |
id: changes | |
uses: UnicornGlobal/[email protected] | |
with: | |
pathspec: POLICIES.md | |
- name: Fail if POLICIES.md changes found | |
if: steps.changes.outputs.changed == 1 | |
run: | | |
echo "Uncommited changes to POLICIES.md exist. Failing." | |
exit 1 | |
- name: Link checker | |
uses: gaurav-nelson/[email protected] |