Skip to content

Dependency Updater #629

Dependency Updater

Dependency Updater #629

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:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- name: Run vendor update
uses: Araxeus/vendorfiles-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
package-manager: bun