diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5b93c5e..279e8d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -62,13 +62,13 @@ jobs: timeout-minutes: 5 steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4 - - uses: ibiqlik/action-yamllint@2576378a8e339169678f9939646ee3ee325e845c # v3.1.1 + - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6 with: - file_or_dir: argocd/ - config_data: | - extends: default - rules: - line-length: - max: 150 - level: warning - document-start: disable + python-version: "3.12" + - name: Install yamllint + run: python -m pip install yamllint==1.35.1 + - name: Run yamllint + run: > + yamllint -f parsable + -d "{extends: default, rules: {line-length: {max: 150, level: warning}, document-start: disable}}" + argocd/