ci(yamllint): replace third-party action with uvx (#7957)

This commit is contained in:
Ville Vesilehto
2026-03-24 09:58:19 +02:00
committed by GitHub
parent 718bfe7e2d
commit 95d6e177ee

View File

@@ -9,11 +9,11 @@ jobs:
steps: steps:
- name: 'Checkout' - name: 'Checkout'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 'Yamllint'
uses: karancode/yamllint-github-action@4052d365f09b8d34eb552c363d1141fd60e2aeb2
with: with:
yamllint_file_or_dir: '.' persist-credentials: false
yamllint_strict: false - name: 'Setup uv'
yamllint_comment: true uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
env: - name: 'Yamllint'
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: |
uvx --from 'yamllint==1.38.0' yamllint .
echo "yamllint passed"