Skip to content

Update composer.lock #114

Update composer.lock

Update composer.lock #114

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: '8.2'
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install or Update Composer dependencies
run: |
if [ -f composer.lock ]; then
composer install --prefer-dist --no-progress
else
composer update --prefer-dist --no-progress
fi
- name: Check if composer.lock has changed
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git diff --exit-code composer.lock || (
git add composer.lock &&
git commit -m "Update composer.lock" &&
git push
)