github-actions: bump shivammathur/setup-php from 2.30.4 to 2.30.5 in the minor-patch-dependencies group #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Lint GitHub Actions workflows" | |
on: | |
pull_request: | |
paths: | |
- ".github/**" | |
jobs: | |
actionlint: | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
lfs: false | |
persist-credentials: false | |
- name: "Check workflow files" | |
uses: "raven-actions/actionlint@v1" | |
with: | |
matcher: true | |
cache: true | |
fail-on-error: false | |
flags: "-ignore SC2086" |