Skip to content

Bump docker/setup-buildx-action from 4.1.0 to 4.2.0 #107

Bump docker/setup-buildx-action from 4.1.0 to 4.2.0

Bump docker/setup-buildx-action from 4.1.0 to 4.2.0 #107

Workflow file for this run

---
name: YAML checks
# yamllint disable-line rule:truthy
on:
pull_request:
paths:
- '.clang-format'
- '.clang-tidy'
- '.gersemirc'
- '.github/workflows/yaml-checks.yaml'
- '**.yaml'
- '**.yml'
workflow_dispatch:
permissions:
contents: read
jobs:
yaml-lint:
name: YAML lint using yamllint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Install yamllint
run: pipx install yamllint~=1.37
- run: |
yamllint $(git ls-files '*.yml' '*.yaml')
yamllint .clang-format .clang-tidy .gersemirc