diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 82eaf36..25d2436 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -4,6 +4,12 @@ jobs: lintAllTheThings: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: yaml-lint - uses: ibiqlik/action-yamllint@v3 + - uses: actions/checkout@v4 + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + - name: Install yamllint + run: pip install yamllint + - name: Run yamllint + run: yamllint BatchExamples