From e1ffb323a0906e86a3aeecd6632e58c6338a55f9 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 15 Aug 2025 09:00:28 +0100 Subject: [PATCH] C#: Replace input interpolation with environment variable --- csharp/actions/create-extractor-pack/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/actions/create-extractor-pack/action.yml b/csharp/actions/create-extractor-pack/action.yml index 2386fe151019..6c6b3af82b02 100644 --- a/csharp/actions/create-extractor-pack/action.yml +++ b/csharp/actions/create-extractor-pack/action.yml @@ -17,7 +17,7 @@ runs: run: | CODEQL_PATH=$(gh codeql version --format=json | jq -r .unpackedLocation) # The legacy ASP extractor is not in this repo, so take the one from the nightly build - mv "$CODEQL_PATH/csharp/tools/extractor-asp.jar" "${{ github.workspace }}/csharp/extractor-pack/tools" + mv "$CODEQL_PATH/csharp/tools/extractor-asp.jar" "$GITHUB_WORKSPACE/csharp/extractor-pack/tools" # Safe guard against using the bundled extractor rm -rf "$CODEQL_PATH/csharp" env: