-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
actions-find-artifact-by-ref/index.mjs
Lines 42 to 45 in 739036c
| octokit.paginate(octokit.rest.actions.listWorkflowRunArtifacts, { | |
| ...context.repo, | |
| run_id: id, | |
| }) |
Previously, it was possible to, within the same workflow, upload multiple artifacts under the same name. However, this has changed with upload-artifact@v4. All versions before v4 will be deprecated by November 30th, 2024 at time of writing
With this, rather than paginating all artifacts for a single Workflow ID immediately, we can search page-by-page and abort early on success. This should reduce the number of GitHub API calls necessary
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request