Skip to content

build(deps): bump trufflesecurity/trufflehog from 3.75.0 to 3.75.1 #59

build(deps): bump trufflesecurity/trufflehog from 3.75.0 to 3.75.1

build(deps): bump trufflesecurity/trufflehog from 3.75.0 to 3.75.1 #59

Workflow file for this run

name: check & fix styling
on:
workflow_dispatch:
push:
paths:
- '.github/**.yml'
- '.github/**.yaml'
- '**.php'
pull_request:
paths:
- '.github/**.yml'
- '.github/**.yaml'
- '**.php'
jobs:
php-cs-fixer:
name: php-cs-fixer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}
- name: Run composer install
run: composer install --no-interaction --prefer-dist --ansi -v
- name: Run php-cs-fixer
run: composer style-fix
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_options: '--no-verify'
commit_message: Fix styling
file_pattern: '**.php'