File tree Expand file tree Collapse file tree 3 files changed +456
-4
lines changed Expand file tree Collapse file tree 3 files changed +456
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Update Cargo.lock
2
+
3
+ on :
4
+ schedule :
5
+ # Run every Sunday at 00:00 UTC
6
+ - cron : ' 0 0 * * 0'
7
+
8
+ permissions :
9
+ contents : read
10
+ pull-requests : write
11
+
12
+ jobs :
13
+ update-cargo-lock :
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - uses : dtolnay/rust-toolchain@master
18
+ with :
19
+ toolchain : stable
20
+ - name : Update dependencies
21
+ run : cargo update
22
+ - name : Create Pull Request
23
+ uses : peter-evans/create-pull-request@v7
24
+ env :
25
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
+ with :
27
+ title : " Update Cargo.lock"
28
+ commit-message : " Update Cargo.lock"
29
+ base : master
30
+ branch : update-cargo-lock
31
+ path : Cargo.lock
Original file line number Diff line number Diff line change 1
1
/target
2
2
** /* .rs.bk
3
- Cargo.lock
4
- * .ts
5
- * .js
6
- * .wasm
3
+ nopanic_check /Cargo.lock
4
+ nopanic_check /target /
You can’t perform that action at this time.
0 commit comments