Vendorfiles Updater
ActionsTags
(1)Action for updating vendorfiles
- uses: Araxeus/vendorfiles-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
package-manager: yarn
-
token
[Required] GitHub token for the repository. -
package-manager
[Optional] command to run beforevendor
command. For example,yarn
ornpm run
. (default: none) -
before-pr-command
[Optional] command to run before creating a PR. (default: none)
name: Dependency Updater
on:
schedule:
- cron: 33 7 * * * # every day at 07:33
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
Vendorfiles Updater is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.