[llvm] workflows/release-binaries-all: Use self-repository reference for actions (PR #218194)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 22 22:06:59 PDT 2026


https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/218194

This allows us to skip a checkout step.

https://github.blog/changelog/2026-07-30-reference-same-repository-actions-with-self-repository-syntax/

>From abf6d955942f398d2b7b761270a607bde14f291f Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Sat, 22 Aug 2026 22:04:52 -0700
Subject: [PATCH] workflows/release-binaries-all: Use self-repository reference
 for actions

This allows us to skip a checkout step.

https://github.blog/changelog/2026-07-30-reference-same-repository-actions-with-self-repository-syntax/
---
 .github/workflows/release-binaries-all.yml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

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



More information about the llvm-commits mailing list