Bump vlucas/phpdotenv from 5.6.3 to 5.6.4 #475
Workflow file for this run
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: PHP | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read # only needs to read the repository contents | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-version: [ '8.2', '8.3', '8.4', '8.5' ] | |
| pg-version: [ '17' ] | |
| services: | |
| postgres: | |
| # Pinned by digest to postgres:17; update the digest when bumping pg-version. | |
| image: postgres:${{ matrix.pg-version }}@sha256:2203e6282d9e7de7c24d7da234e2a744fb325df366a3fd8ed940e8abbee39527 | |
| env: | |
| POSTGRES_PASSWORD: postgres | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| ports: | |
| - 5432:5432 | |
| name: PHP ${{ matrix.php-version }} | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: '22' | |
| - uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2.37.2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| extensions: intl, pdo_pgsql, xdebug, zip | |
| coverage: xdebug | |
| ini-values: xdebug.mode=coverage,error_reporting=E_ALL,display_errors=On | |
| - run: composer validate --strict | |
| - run: composer install --prefer-dist --no-progress | |
| - run: composer run-script dev:lint:php | |
| - run: composer run-script dev:lint:phpcs | |
| - run: composer run-script "dev:analyze:phpstan-${PHP_VERSION}" | |
| env: | |
| PHP_VERSION: ${{ matrix.php-version }} | |
| - run: composer run-script dev:test:unit | |
| env: | |
| PHPPGADMIN_TEST_SERVER_HOSTNAME: localhost | |
| PHPPGADMIN_TEST_SERVER_PASSWORD: ${{ vars.PHPPGADMIN_TEST_SERVER_PASSWORD }} |