Rollup merge of #129100 - ehuss:fix-dependencies-update, r=Kobzol

Fix dependencies cron job

This fixes a mistake in #127786 that broke the dependencies update cron job. I accidentally set the wrong path in the cargo command.
This commit is contained in:
Matthias Krüger 2024-08-15 00:02:27 +02:00 committed by GitHub
commit e14f171e96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ jobs:
- name: cargo update rustbook - name: cargo update rustbook
run: | run: |
echo -e "\nrustbook dependencies:" >> cargo_update.log echo -e "\nrustbook dependencies:" >> cargo_update.log
cargo update --manifest-path src/tools/rustbook 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log cargo update --manifest-path src/tools/rustbook/Cargo.toml 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
- name: upload Cargo.lock artifact for use in PR - name: upload Cargo.lock artifact for use in PR
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with: