Bump rector/rector from 1.2.8 to 1.2.10 #798
Workflow file for this run
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: "Psalm Security Scan" | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
jobs: | |
psalm: | |
name: "Psalm" | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
dependencies: | |
- "locked" | |
php-version: | |
- "8.3" | |
operating-system: | |
- "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Composer install" | |
uses: ./.github/actions/composer | |
with: | |
php-version: '${{ matrix.php-version }}' | |
dependencies: '${{ matrix.dependencies }}' | |
extensions: json, mbstring | |
- name: "Psalm Security Scan" | |
run: .Build/bin/psalm --output-format=github --report=results.sarif | |
- name: "Upload Security Analysis results to GitHub" | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif |