-
-
Notifications
You must be signed in to change notification settings - Fork 58
43 lines (34 loc) · 1.05 KB
/
cargo-update.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: "Update repository dependencies"
on:
workflow_call:
workflow_dispatch:
schedule:
- cron: "0 4 1 * *"
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Checkout
uses: actions/checkout@v4
- name: Bump nix
run: nix flake update
- name: Install dependencies
run: nix profile install --inputs-from . nixpkgs#cargo-bump nixpkgs#cargo
- name: Bump rust
run: |
cargo bump patch
cargo update
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
token: "${{ secrets.github_token }}"
title: "chore: update all inputs"
author: GitHub <[email protected]>
branch: automated-dep-updates
branch-suffix: timestamp
delete-branch: true
commit-message: |
chore: update all inputs
Co-authored-by: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>