Skip to content

Bump shivammathur/setup-php from 2.36.0 to 2.37.0 #61

Bump shivammathur/setup-php from 2.36.0 to 2.37.0

Bump shivammathur/setup-php from 2.36.0 to 2.37.0 #61

Workflow file for this run

name: On pull request
on:
pull_request:
branches:
- main
jobs:
php-versions:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.php-versions.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Determine supported PHP versions
id: php-versions
uses: antfroger/php-version-action@v1
tests:
needs: php-versions
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 2
matrix:
php: ${{ fromJson(needs.php-versions.outputs.matrix) }}
os:
- ubuntu-latest
name: PHP ${{ matrix.php }}; ${{ matrix.os }}
steps:
- name: Setup PHP
uses: shivammathur/setup-php@2.37.0
with:
php-version: ${{ matrix.php }}
extensions: curl, json, mbstring, pcre
ini-values: memory_limit=512M
tools: composer:v2
- name: Checkout
uses: actions/checkout@v6
- name: Composer install without dev
run: composer install --no-progress --no-dev --prefer-dist --optimize-autoloader
- name: Composer install with dev
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: phpcs
run: composer phpcs
- name: phpstan
run: composer phpstan
- name: PHPUnit
run: composer test
dependabot:
needs: tests
permissions:
actions: write
checks: read
contents: write
deployments: read
discussions: read
issues: write
pages: read
packages: read
pull-requests: write
repository-projects: read
security-events: write
statuses: write
runs-on: ubuntu-latest
# Checking the actor will prevent your Action run failing on non-Dependabot
# PRs but also ensures that it only does work for Dependabot PRs.
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
# This first step will fail if there's no metadata and so the approval
# will not occur.
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2.5.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
# Here the PR gets approved.
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Finally, this sets the PR to allow auto-merging for patch and minor
# updates if all checks pass
- name: Enable auto-merge for Dependabot PRs
# if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}