Update dependency nyholm/psr7 to ^1.8.1 #451
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: Build on merge to latest | |
on: | |
push: | |
branches: | |
- latest | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install PHP" | |
uses: "shivammathur/[email protected]" | |
with: | |
coverage: "pcov" | |
php-version: "8.2" | |
ini-values: memory_limit=-1 | |
tools: composer:v2, cs2pr | |
- name: "Cache dependencies" | |
uses: "actions/cache@v3" | |
with: | |
key: ${{ runner.os }}-node-${{ hashFiles('/composer.lock') }} | |
path: | | |
~/.composer/cache | |
vendor | |
- name: Install dependencies | |
run: composer install --no-progress | |
- name: Set up user name and email for git | |
run: | | |
git config --global user.email "$GIT_USER_EMAIL" | |
git config --global user.name "$GIT_USER_NAME" | |
env: | |
GIT_USER_EMAIL: [email protected] | |
GIT_USER_NAME: test | |
- name: Build advisories | |
run: php build-conflicts.php | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |