Skip to content

chore(deps): update actions/checkout action to v6.0.0 (#22) #130

chore(deps): update actions/checkout action to v6.0.0 (#22)

chore(deps): update actions/checkout action to v6.0.0 (#22) #130

Workflow file for this run

name: YAML Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
yamllint:
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- name: Checkout repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Run yamllint
run: yamllint --strict --config-file .yamllint .
- name: Report results
if: always()
run: |
if [ $? -eq 0 ]; then
echo "✅ All YAML files are properly formatted"
else
echo "❌ YAML formatting issues found"
echo "Please fix the issues above or update .yamllint configuration if needed"
fi