mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>
20 lines
374 B
YAML
20 lines
374 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 }} |