workflows/release-documentation: Add missing checkout - #211082
Merged
Merged
Conversation
We need to checkout the upload-release-artifact composite action before using it.
|
@llvm/pr-subscribers-github-workflow Author: Tom Stellard (tstellar) ChangesWe need to checkout the upload-release-artifact composite action before using it. Full diff: https://github.com/llvm/llvm-project/pull/211082.diff 1 Files Affected:
diff --git a/.github/workflows/release-documentation.yml b/.github/workflows/release-documentation.yml
index aa6aa7bc4f8f4..ce78178a43544 100644
--- a/.github/workflows/release-documentation.yml
+++ b/.github/workflows/release-documentation.yml
@@ -199,6 +199,13 @@ jobs:
attestations: write # For artifact attestations
steps:
+ - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
+ with:
+ persist-credentials: false
+ sparse-checkout: |
+ .github/workflows/upload-release-artifact
+ sparse-checkout-cone-mode: false
+
- name: Upload Man Page Artifacts
id: man-page-artifact-upload
uses: ./.github/workflows/upload-release-artifact
|
Contributor
Author
|
/cherry-pick 8ad500f |
Contributor
|
I'm not sure if this commit is causing issues, or if the CI hasn't picked up the change yet. I am seeing that workflows could not run on my most recent PR merge - commit # 3486c5d The error references invalid syntax at line 186 of the yaml file. |
Member
|
/pull-request #211370 |
dyung
pushed a commit
that referenced
this pull request
Jul 23, 2026
We need to checkout the upload-release-artifact composite action before using it. (cherry picked from commit 8ad500f)
midhuncodes7
pushed a commit
to midhuncodes7/llvm-project
that referenced
this pull request
Jul 28, 2026
We need to checkout the upload-release-artifact composite action before using it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We need to checkout the upload-release-artifact composite action before using it.