Fix #1427: [Repo Assist] ci: pin KyleMayes/install-llvm-action to v2....#1459
Open
JiwaniZakir wants to merge 1 commit intopy-why:mainfrom
Open
Fix #1427: [Repo Assist] ci: pin KyleMayes/install-llvm-action to v2....#1459JiwaniZakir wants to merge 1 commit intopy-why:mainfrom
JiwaniZakir wants to merge 1 commit intopy-why:mainfrom
Conversation
41 tasks
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.
Closes #1427
Standardises
KyleMayes/install-llvm-actionto the pinned@v2.0.5tag across all three workflows that were using the floating@v2reference.Changes
.github/workflows/advanced-on-demand.ymlline 59:@v2→@v2.0.5.github/workflows/ci-install.ymlline 41:@v2→@v2.0.5.github/workflows/nightly-tests.ymlline 32:@v2→@v2.0.5ci.ymlwas already pinned to@v2.0.5and is unchanged.Motivation
Floating major-version tags (e.g.
@v2) move when the upstream author pushes new releases. IfKyleMayes/install-llvm-action@v2advances to a version with any incompatibility, the nightly, install-check, and advanced-on-demand workflows would break unexpectedly and non-deterministically. Pinning to@v2.0.5makes all four workflows consistent with each other, ensures reproducible builds, and aligns with the convention already established inci.yml.Testing
CI configuration change only — no source code or test logic modified. The pinned
@v2.0.5version is identical to whatci.ymlcurrently resolves at runtime under@v2, so workflow behaviour is unchanged. Verification: confirm the three affected workflows complete their "Install LLVM and Clang" step successfully on the next triggered run.This PR was created with AI assistance (Claude). The changes were reviewed by quality gates and a critic model before submission.