Skip to content

Update Cargo Dependencies #9

Update Cargo Dependencies

Update Cargo Dependencies #9

name: Update Cargo Dependencies
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0" # Run every Sunday at midnight
jobs:
update-cargo:
runs-on: ubuntu-latest
steps:
- name: Create temporary GitHub App Token
id: app
uses: actions/create-github-app-token@v3
with:
owner: ${{ github.repository_owner }}
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}
- name: Update Cargo Dependencies
uses: alchemaxinc/update-deps/cargo@v1
with:
token: ${{ steps.app.outputs.token }}
auto-merge: "true"
base-branch: "main"
branch-prefix: "update-cargo"
pr-title: "fix: Update Cargo Dependencies"
commit-message: "fix: update cargo dependencies"