Skip to content

Commit

Permalink
Create dependencies.yml (#805)
Browse files Browse the repository at this point in the history
Weekly dep update PR
  • Loading branch information
TilakMaddy authored Feb 24, 2025
1 parent 7e185e5 commit 5b18bdc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Runs `cargo update` periodically.
# Reference:
# https://github.com/paradigmxyz/solar/blob/main/.github/workflows/dependencies.yml

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 }}

0 comments on commit 5b18bdc

Please sign in to comment.