From 95d6e177eed5dba97103d9c05f333ea414954506 Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Tue, 24 Mar 2026 09:58:19 +0200 Subject: [PATCH] ci(yamllint): replace third-party action with uvx (#7957) --- .github/workflows/yamllint.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 243395171..900a289b7 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -9,11 +9,11 @@ jobs: steps: - name: 'Checkout' uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: 'Yamllint' - uses: karancode/yamllint-github-action@4052d365f09b8d34eb552c363d1141fd60e2aeb2 with: - yamllint_file_or_dir: '.' - yamllint_strict: false - yamllint_comment: true - env: - GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} + persist-credentials: false + - name: 'Setup uv' + uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 + - name: 'Yamllint' + run: | + uvx --from 'yamllint==1.38.0' yamllint . + echo "yamllint passed"