mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
Update library/Cargo.toml
in weekly job
Before the workspace split, the library was covered by the weekly `cargo update` cron job. Now that the library has its own workspace, it doesn't get these updates. Add `library/Cargo.toml` to the job so updates happen again.
This commit is contained in:
parent
45fbf41deb
commit
35752cf058
7
.github/workflows/dependencies.yml
vendored
7
.github/workflows/dependencies.yml
vendored
@ -64,6 +64,10 @@ jobs:
|
|||||||
- name: cargo update
|
- name: cargo update
|
||||||
# Remove first line that always just says "Updating crates.io index"
|
# Remove first line that always just says "Updating crates.io index"
|
||||||
run: cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
|
run: cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
|
||||||
|
- name: cargo update library
|
||||||
|
run: |
|
||||||
|
echo -e "\nlibrary dependencies:" >> cargo_update.log
|
||||||
|
cargo update --manifest-path library/Cargo.toml 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
|
||||||
- name: cargo update rustbook
|
- name: cargo update rustbook
|
||||||
run: |
|
run: |
|
||||||
echo -e "\nrustbook dependencies:" >> cargo_update.log
|
echo -e "\nrustbook dependencies:" >> cargo_update.log
|
||||||
@ -74,6 +78,7 @@ jobs:
|
|||||||
name: Cargo-lock
|
name: Cargo-lock
|
||||||
path: |
|
path: |
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
library/Cargo.lock
|
||||||
src/tools/rustbook/Cargo.lock
|
src/tools/rustbook/Cargo.lock
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
- name: upload cargo-update log artifact for use in PR
|
- name: upload cargo-update log artifact for use in PR
|
||||||
@ -119,7 +124,7 @@ jobs:
|
|||||||
git config user.name github-actions
|
git config user.name github-actions
|
||||||
git config user.email github-actions@github.com
|
git config user.email github-actions@github.com
|
||||||
git switch --force-create cargo_update
|
git switch --force-create cargo_update
|
||||||
git add ./Cargo.lock ./src/tools/rustbook/Cargo.lock
|
git add ./Cargo.lock ./library/Cargo.lock ./src/tools/rustbook/Cargo.lock
|
||||||
git commit --no-verify --file=commit.txt
|
git commit --no-verify --file=commit.txt
|
||||||
|
|
||||||
- name: push
|
- name: push
|
||||||
|
Loading…
Reference in New Issue
Block a user