chore(1.x): release 1.3.0 #42
This file contains hidden or 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: π Security analysis | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| push: | |
| jobs: | |
| security-analysis: | |
| timeout-minutes: 4 | |
| runs-on: ${{ matrix.os }} | |
| concurrency: | |
| cancel-in-progress: true | |
| group: security-analysis-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| php-version: | |
| - '8.2' | |
| dependencies: | |
| - highest | |
| steps: | |
| - name: π¦ Check out the codebase | |
| uses: actions/checkout@v6 | |
| - name: π οΈ Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| env: | |
| COMPOSER_ROOT_VERSION: '1.x-dev' | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| ini-values: error_reporting=E_ALL | |
| coverage: none | |
| - name: π€ Validate composer.json and composer.lock | |
| run: composer validate --ansi --strict | |
| # Infection is dev-only and requires PHP >= 8.3, which breaks installation | |
| # on the 8.2 matrix leg. It is not needed for the security audit. | |
| - name: π§Ή Remove Infection (incompatible with PHP 8.2) | |
| run: composer remove --dev infection/infection --no-update --no-interaction | |
| - name: π₯ Install dependencies with composer | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: ${{ matrix.dependencies }} | |
| - name: π Check installed packages for security vulnerability advisories | |
| run: composer audit --ansi |