Skip to content

Update all dependencies #918

Update all dependencies

Update all dependencies #918

Workflow file for this run

---
name: Linting YAML
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches:
- "main"
pull_request:
branches:
- "main"
concurrency:
# yamllint disable-line rule:line-length
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: "Linting: yaml"
run: scripts/ci/lint-yaml
if: always()