Skip to content

chore(deps): update ghcr.io/linuxserver/daapd docker digest to 716a6c1 #2959

chore(deps): update ghcr.io/linuxserver/daapd docker digest to 716a6c1

chore(deps): update ghcr.io/linuxserver/daapd docker digest to 716a6c1 #2959

Workflow file for this run

---
name: Lint YAML files on Pull Requests
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- "**.yaml"
- "**.yml"
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Get changes
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
id: filter
with:
list-files: shell
filters: |
yaml:
- added|modified: "**.yaml"
- added|modified: "**.yml"
- name: Lint files
if: ${{ steps.filter.outputs.yaml == 'true' }}
uses: reviewdog/action-yamllint@508148c0d959b166798f9792d1b29dddcac37348 # v1
with:
yamllint_flags: "-c .github/lint/.yamllint.yaml ${{ steps.filter.outputs.yaml_files }}"