Update Deps #119
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
--- | |
name: Update Deps | |
on: | |
workflow_dispatch: | |
# Run every Monday | |
schedule: | |
- cron: '30 5 * * 1' | |
jobs: | |
cargo-update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Cargo update | |
run: cargo update | |
- name: Commit changes | |
id: commit | |
continue-on-error: true | |
run: | | |
git config user.name 'phylum-bot' | |
git config user.email '[email protected]' | |
git commit -a -m "Bump dependencies" | |
git push --force origin HEAD:auto-cargo-update | |
- name: Create Pull Request | |
if: ${{ steps.commit.outcome == 'success' }} | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
github-token: ${{ secrets.GH_RELEASE_PAT }} | |
script: | | |
github.rest.pulls.create({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
head: "auto-cargo-update", | |
base: context.ref, | |
title: "Bump dependencies", | |
body: "Bump dependencies for all SemVer-compatible updates.", | |
}); |