diff options
| author | klensy <klensy@users.noreply.github.com> | 2024-09-29 11:36:00 +0300 |
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2024-09-29 11:36:00 +0300 |
| commit | 33f637c577ecd13d0f476c5b19e813c6f6def56b (patch) | |
| tree | 5db1402acb1406ed66f3565cdf260393fe1939fc | |
| parent | 9903b256a2f5d57a912c6aa793d4373db30f9f9a (diff) | |
| download | rust-33f637c577ecd13d0f476c5b19e813c6f6def56b.tar.gz rust-33f637c577ecd13d0f476c5b19e813c6f6def56b.zip | |
add title to compiler update
| -rw-r--r-- | .github/workflows/dependencies.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 83b92b7fa09..b7b5a03bd41 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -61,9 +61,11 @@ jobs: rustup toolchain install --no-self-update --profile minimal $TOOLCHAIN rustup default $TOOLCHAIN - - name: cargo update + - name: cargo update compiler & tools # 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: | + echo -e "\ncompiler & tools dependencies:" >> cargo_update.log + 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 |
