mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
21 lines
375 B
YAML
21 lines
375 B
YAML
# Runs `cargo update` periodically.
|
|
|
|
name: Update 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 }}
|