From 46e464a26bcf83c414db489c23236663ee570260 Mon Sep 17 00:00:00 2001 From: Kevin Svetlitski Date: Fri, 23 Jun 2023 13:30:16 -0700 Subject: [PATCH] Fix downloading LLVM in GitHub Action It turns out LLVM does not include a build for every platform in the assets for every release, just some of them. As such, I've pinned us to the latest release version with a corresponding build. --- .github/workflows/static_analysis.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static_analysis.yaml b/.github/workflows/static_analysis.yaml index 547b1564..df60b5a1 100644 --- a/.github/workflows/static_analysis.yaml +++ b/.github/workflows/static_analysis.yaml @@ -31,7 +31,7 @@ jobs: uses: dsaltares/fetch-gh-release-asset@master with: repo: 'llvm/llvm-project' - version: 'latest' + version: 'tags/llvmorg-16.0.4' file: 'clang[+]llvm-.*x86_64-linux-gnu.*' regex: true target: 'llvm_assets/'