Skip to content

Commit

Permalink
Rollup merge of rust-lang#129100 - ehuss:fix-dependencies-update, r=K…
Browse files Browse the repository at this point in the history
…obzol

Fix dependencies cron job

This fixes a mistake in rust-lang#127786 that broke the dependencies update cron job. I accidentally set the wrong path in the cargo command.
  • Loading branch information
matthiaskrgr committed Aug 14, 2024
2 parents c582c0c + 4a2d0d9 commit e14f171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: cargo update rustbook
run: |
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
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit e14f171

Please sign in to comment.