chore(deps): bump anthropics/claude-code-action from 1.0.34 to 1.0.41 in the claude-code-action group #5
Workflow file for this run
This file contains hidden or 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: YAML Lint | |
| # Validates YAML configuration files using yamllint | |
| # Config: .yamllint.yml (no line length limit, GHA-friendly truthy values) | |
| # Triggers on YAML file changes | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.yml" | |
| - "**/*.yaml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "**/*.yml" | |
| - "**/*.yaml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint YAML Files | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Run yamllint | |
| run: pipx run yamllint==1.38.0 -c .yamllint.yml .github/ .yamllint.yml |