Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 499e3ee

Browse files
committedSep 27, 2024
Update src/bootstrap/Cargo.lock in the weekly job
1 parent a3f76a2 commit 499e3ee

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎.github/workflows/dependencies.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ jobs:
6868
run: |
6969
echo -e "\nlibrary dependencies:" >> cargo_update.log
7070
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
7175
- name: cargo update rustbook
7276
run: |
7377
echo -e "\nrustbook dependencies:" >> cargo_update.log
@@ -79,6 +83,7 @@ jobs:
7983
path: |
8084
Cargo.lock
8185
library/Cargo.lock
86+
src/bootstrap/Cargo.lock
8287
src/tools/rustbook/Cargo.lock
8388
retention-days: 1
8489
- name: upload cargo-update log artifact for use in PR
@@ -124,7 +129,7 @@ jobs:
124129
git config user.name github-actions
125130
git config user.email github-actions@github.com
126131
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
128133
git commit --no-verify --file=commit.txt
129134
130135
- name: push

0 commit comments

Comments
 (0)
Failed to load comments.