1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 68
68
run : |
69
69
echo -e "\nlibrary dependencies:" >> cargo_update.log
70
70
cargo update --manifest-path library/Cargo.toml 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
71
+ - name : cargo update bootstrap
72
+ run : |
73
+ echo -e "\nbootstrap dependencies:" >> cargo_update.log
74
+ cargo update --manifest-path src/bootstrap/Cargo.toml 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
71
75
- name : cargo update rustbook
72
76
run : |
73
77
echo -e "\nrustbook dependencies:" >> cargo_update.log
79
83
path : |
80
84
Cargo.lock
81
85
library/Cargo.lock
86
+ src/bootstrap/Cargo.lock
82
87
src/tools/rustbook/Cargo.lock
83
88
retention-days : 1
84
89
- name : upload cargo-update log artifact for use in PR
@@ -124,7 +129,7 @@ jobs:
124
129
git config user.name github-actions
125
130
git config user.email github-actions@github.com
126
131
git switch --force-create cargo_update
127
- git add ./Cargo.lock ./library/Cargo.lock ./src/tools/rustbook/Cargo.lock
132
+ git add ./Cargo.lock ./library/Cargo.lock ./src/bootstrap/Cargo.lock ./src/ tools/rustbook/Cargo.lock
128
133
git commit --no-verify --file=commit.txt
129
134
130
135
- name : push
0 commit comments