Skip to content

chore(deps): bump anthropics/claude-code-action from 1.0.52 to 1.0.55 in the claude-code-action group #18

chore(deps): bump anthropics/claude-code-action from 1.0.52 to 1.0.55 in the claude-code-action group

chore(deps): bump anthropics/claude-code-action from 1.0.52 to 1.0.55 in the claude-code-action group #18

Workflow file for this run

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