Skip to content

chore(deps): bump tar from 7.5.13 to 7.5.16 in the npm_and_yarn group across 1 directory #118

chore(deps): bump tar from 7.5.13 to 7.5.16 in the npm_and_yarn group across 1 directory

chore(deps): bump tar from 7.5.13 to 7.5.16 in the npm_and_yarn group across 1 directory #118

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
jobs:
installable-symfony-require:
name: PHP ${{ matrix.php }} installable (extra.symfony.require=${{ matrix.symfony-require }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ["8.3", "8.4", "8.5"]
symfony-require: ["5.4.*", "6.*", "7.*", "8.*"]
exclude:
- php: "8.3"
symfony-require: "8.*"
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- name: Validate composer.json
run: composer validate --no-check-publish
- name: Set extra.symfony.require
run: composer config extra.symfony.require "${{ matrix.symfony-require }}"
- name: Resolve dependencies
run: composer update --no-interaction --no-progress --prefer-dist --no-scripts