Skip to content

Bump zizmorcore/zizmor-action from 0.6.2 to 0.6.3 #2165

Bump zizmorcore/zizmor-action from 0.6.2 to 0.6.3

Bump zizmorcore/zizmor-action from 0.6.2 to 0.6.3 #2165

Workflow file for this run

name: "PHP Lint"
on:
- push
- pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
tests:
name: "Lint"
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
coverage: "none"
extensions: "intl"
php-version: "8.4"
- name: "Lint PHP files"
run: "find src/ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l -f"