diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-08-15 00:02:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-15 00:02:27 +0200 |
| commit | e14f171e96f3b1cfccfe77d991a2b815d9659981 (patch) | |
| tree | f527e3b8de113dad5eb0bcfeeb092b707e833fc9 | |
| parent | c582c0c1370101391cda7cd3f1a24c2d664c7645 (diff) | |
| parent | 4a2d0d9233b8abde6faa00b6e04636d43493269c (diff) | |
| download | rust-e14f171e96f3b1cfccfe77d991a2b815d9659981.tar.gz rust-e14f171e96f3b1cfccfe77d991a2b815d9659981.zip | |
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.
| -rw-r--r-- | .github/workflows/dependencies.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index b137497594f..5e54ceea3d7 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -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: |
