[llvm] workflows/release-binaries-all: Use self-repository reference for actions (PR #218194)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Aug 22 22:07:45 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Tom Stellard (tstellar)
<details>
<summary>Changes</summary>
This allows us to skip a checkout step.
https://github.blog/changelog/2026-07-30-reference-same-repository-actions-with-self-repository-syntax/
---
Full diff: https://github.com/llvm/llvm-project/pull/218194.diff
1 Files Affected:
- (modified) .github/workflows/release-binaries-all.yml (+1-8)
``````````diff
diff --git a/.github/workflows/release-binaries-all.yml b/.github/workflows/release-binaries-all.yml
index 862300a8118e5..f10e2d2f32298 100644
--- a/.github/workflows/release-binaries-all.yml
+++ b/.github/workflows/release-binaries-all.yml
@@ -68,16 +68,9 @@ jobs:
release-version: ${{ steps.vars.outputs.release-version }}
upload: ${{ steps.vars.outputs.upload }}
steps:
- - uses: actions/checkout at de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- with:
- persist-credentials: false
- sparse-checkout: |
- .github/workflows/validate-release-version
- sparse-checkout-cone-mode: false
-
- name: Validate Input
if: inputs.release-version != ''
- uses: ./.github/workflows/validate-release-version
+ uses: $/.github/workflows/validate-release-version
with:
release-version: ${{ inputs.release-version }}
- shell: bash
``````````
</details>
https://github.com/llvm/llvm-project/pull/218194
More information about the llvm-commits
mailing list