Dependency Updater #161
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
name: Dependency Updater | |
on: | |
schedule: | |
# every day at 07:33 | |
- cron: '33 7 * * *' | |
workflow_dispatch: null # allow manual trigger | |
jobs: | |
update-vendors: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Yarn PnP Setup | |
uses: Araxeus/setup-yarn-pnp-action@v1 | |
- name: Run vendor update | |
uses: Araxeus/vendorfiles-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
package-manager: yarn |