dependency_update #4
This file contains 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@v4 | |
- name: Install PHP | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "intl, zip, apcu" | |
php-version: "8.3" | |
# See the Conductor GitHub Action at https://github.com/packagist/conductor-github-action | |
- name: "Running Conductor" | |
uses: packagist/conductor-github-action@v1 |