Skip to content

Bump actions/checkout from 4.1.1 to 4.1.6 #69

Bump actions/checkout from 4.1.1 to 4.1.6

Bump actions/checkout from 4.1.1 to 4.1.6 #69

Workflow file for this run

name: Validate
on: [push, pull_request]
jobs:
conftest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Check yaml extension does not exist
run: |
if [[ $(find . -type f -name "*.yaml" -not -path "./.github/*" | wc -l) -gt 0 ]] ; then
echo "Found .yaml; only expected .yml"
find . -type f -name "*.yaml" -not -path "./.github/*" -exec echo {} \;
exit 1
fi
- name: Conftest
uses: redhat-cop/github-actions/confbatstest@11f2ce27643eb7c76ac3623cb99d9b08be30d762 # v4
with:
tests: _test/conftest.sh