Composer update #96
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: Composer update | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Runs once a day at 02:00 AM. Note that OCP package | |
| # is pushed once a day at around 00:00 AM, see | |
| # https://github.com/nextcloud-deps/ocp/blob/master/.github/workflows/cron.yml | |
| - cron: '0 2 * * *' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| token: ${{ secrets.WORKFLOW_OCR_COMPOSER_DEPS_AUTO_UPDATE }} # To be able to trigger workflows in case of git push | |
| - name: Set up php 8.4 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.4 | |
| extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, gd, zip, imagick | |
| coverage: none | |
| - name: Update dependencies | |
| run: composer update --with-all-dependencies | |
| - uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: Update composer dependencies |