Skip to content
This repository was archived by the owner on Aug 21, 2026. It is now read-only.

github-actions (3.x): bump the production-dependencies group with 5 updates #63

github-actions (3.x): bump the production-dependencies group with 5 updates

github-actions (3.x): bump the production-dependencies group with 5 updates #63

name: "Lint GitHub Actions workflows"
on:
pull_request:
paths:
- ".github/**"
permissions:
contents: read
jobs:
actionlint:
uses: "mimmi20/ci/.github/workflows/lint-actions.yml@8.4"

Check failure on line 13 in .github/workflows/lint-workflow-files.yml

View workflow run for this annotation

GitHub Actions / Lint GitHub Actions workflows

Invalid workflow file

The workflow is not valid. .github/workflows/lint-workflow-files.yml (Line: 13, Col: 11): Input skip-libpng-install is required, but not provided while calling. .github/workflows/lint-workflow-files.yml (Line: 13, Col: 11): Input skip-librabbitmq-install is required, but not provided while calling.
with:
skip-nasm-install: false
skip-libimagequant-install: false
# This is a meta job to avoid to have to constantly change the protection rules
# whenever we touch the matrix.
lint-status:
name: "Lint Status"
runs-on: "ubuntu-latest"
if: always()
needs: "actionlint"
steps:
- name: Failing run
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1
- name: Successful run
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0