Dependencies #8
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
# Runs `cargo update` periodically. | |
name: Dependencies | |
on: | |
schedule: | |
# Run weekly | |
- cron: "0 0 * * SUN" | |
workflow_dispatch: | |
# Needed so we can run it manually | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update: | |
uses: ithacaxyz/ci/.github/workflows/cargo-update-pr.yml@main | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} |