dependency_update #20
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
| # See the Conductor setup guide at https://packagist.com/docs/conductor/getting-started | |
| on: | |
| repository_dispatch: | |
| types: | |
| - dependency_update | |
| name: Private Packagist Conductor | |
| permissions: | |
| contents: write | |
| jobs: | |
| conductor: | |
| name: Private Packagist Conductor | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| # Install PHP. You can also replace this step by | |
| # reusing an existing workflow that sets up PHP. | |
| # Additional services required to run composer | |
| # install/update, such as Node.js or a database, | |
| # must be set up here too. | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # 2.35.5 | |
| with: | |
| php-version: "latest" | |
| coverage: "none" | |
| # See the Conductor GitHub Action at https://github.com/packagist/conductor-github-action | |
| - name: "Running Conductor" | |
| uses: packagist/conductor-github-action@v1 |