Skip to content

Commit 64c1d94

Browse files
committed
fix cargo_upgrades.stdout filename
1 parent 0f68f27 commit 64c1d94

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dependencies.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ jobs:
4949
- name: cargo upgrades
5050
# cargo-upgrade exits 7 if upgrades are available, ignore that
5151
run: cargo upgrades > cargo_upgrades.stdout || exit 0
52-
- name: output upgrades for use in PR
52+
- name: upload upgrades artifact for use in PR
5353
uses: actions/upload-artifact@v3
5454
with:
5555
name: cargo-upgrades
56-
path: cargo-upgrades.stdout
56+
path: cargo_upgrades.stdout
5757
retention-days: 1
5858

5959
pr:
@@ -80,7 +80,7 @@ jobs:
8080
run: |
8181
echo "${PR_MESSAGE}" > body.md
8282
echo '```txt' >> body.md
83-
cat cargo-upgrades.stdout >> body.md
83+
cat cargo_upgrades.stdout >> body.md
8484
echo '```' >> body.md
8585
8686
- name: edit and reopen existing pull request

0 commit comments

Comments
 (0)