We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9903b25 commit 33f637cCopy full SHA for 33f637c
.github/workflows/dependencies.yml
@@ -61,9 +61,11 @@ jobs:
61
rustup toolchain install --no-self-update --profile minimal $TOOLCHAIN
62
rustup default $TOOLCHAIN
63
64
- - name: cargo update
+ - name: cargo update compiler & tools
65
# Remove first line that always just says "Updating crates.io index"
66
- run: cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
+ run: |
67
+ echo -e "\ncompiler & tools dependencies:" >> cargo_update.log
68
+ cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
69
- name: cargo update library
70
run: |
71
echo -e "\nlibrary dependencies:" >> cargo_update.log
0 commit comments