Bump tightenco/ziggy from 1.8.2 to 2.4.0 #183
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: Composer Validate | |
on: | |
push: | |
paths: | |
- 'composer.json' | |
- 'composer-lock.json' | |
pull_request: | |
paths: | |
- 'composer.json' | |
- 'composer-lock.json' | |
jobs: | |
composer_validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e | |
with: | |
php-version: '8.2' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Install Composer | |
uses: php-actions/composer@v6 | |
with: | |
php_extensions: intl zip sodium pcntl bcmath | |
php_version: "8.2" | |
args: --ignore-platform-req=ext-pcntl --ignore-platform-req=ext-bcmath | |
- name: Validate Composer files | |
run: composer validate |