⬆️ Update ghcr.io/linuxserver/lidarr Docker digest to 4a581ce #524

Merged
mafyuh merged 8 commits from renovate/ghcr.io-linuxserver-lidarr into main 2024-12-13 00:44:52 -05:00
Showing only changes of commit 348e682841 - Show all commits

View file

@ -21,10 +21,11 @@ jobs:
- name: Lint .yml files
run: |
lint_output=$(find docker -name "*.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} \;)
lint_output=$(find docker -name "*.yml" -exec yamllint --strict -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} \;)
# Check if there are any issues
if [[ -n "$lint_output" ]]; then
echo "$lint_output"
# Check if there are any warnings or errors in the output
echo "$lint_output"
if echo "$lint_output" | grep -q -E "error|warning"; then
echo "YAML linting failed due to errors or warnings."
exit 1
fi