Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflow actions #146

Merged
merged 2 commits into from
Sep 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use official download-artifact action.
The official download-artifact action now supports retrieving artifacts
from a different workflow run.
  • Loading branch information
warwickmm committed Sep 6, 2024
commit 3f06020c2e44e70ff69ba62a6656bee151d33276
5 changes: 3 additions & 2 deletions .github/workflows/pull_request_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ jobs:

steps:
- name: Download artifacts
uses: dawidd6/action-download-artifact@v3
uses: actions/download-artifact@v4
with:
run_id: ${{ github.event.workflow_run.id }}
github-token: ${{ github.token }}
run-id: ${{ github.event.workflow_run.id }}

- name: Read pull request number
id: pull_request_number_reader
Expand Down