From b945f6e0614da139fc140621a09629f15dedd1c8 Mon Sep 17 00:00:00 2001 From: Angela P Wen Date: Mon, 21 Apr 2025 15:16:01 -0700 Subject: [PATCH] Add missing `v` to CodeQL bundle URL --- images/macos/scripts/build/install-codeql-bundle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/macos/scripts/build/install-codeql-bundle.sh b/images/macos/scripts/build/install-codeql-bundle.sh index 4df220ba5..18fb2075b 100644 --- a/images/macos/scripts/build/install-codeql-bundle.sh +++ b/images/macos/scripts/build/install-codeql-bundle.sh @@ -22,7 +22,7 @@ if [ -z "$codeql_action_latest_major_version" ]; then fi # Retrieve the CLI version of the latest CodeQL bundle. -defaults_json_path=$(download_with_retry "https://raw.githubusercontent.com/github/codeql-action/$codeql_action_latest_major_version/src/defaults.json") +defaults_json_path=$(download_with_retry "https://raw.githubusercontent.com/github/codeql-action/v$codeql_action_latest_major_version/src/defaults.json") bundle_version=$(jq -r '.cliVersion' "$defaults_json_path") bundle_tag_name="codeql-bundle-v$bundle_version"