Skip to content

cargo_update

cargo_update #8

Workflow file for this run

name: "cargo_update"
on:
workflow_dispatch:
schedule:
# At 7:00am on Wednesday
- cron: "0 7 * * 3"
jobs:
flake_update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: cachix/install-nix-action@v25
with:
install_url: https://releases.nixos.org/nix/nix-2.20.4/install
- name: Flake update
run: |
nix develop .#ci --command cargo update
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: "Update Cargo.lock"
title: "Update Cargo.lock"
body: "This PR updates the Cargo.lock file."
branch: "update-cargo-lock"
branch-suffix: "short-commit-hash"
base: "main"