Bump @actions/tool-cache to 2.0.0

This allows us to drop our direct dependency on `@actions/http-client`.
This commit is contained in:
Henry Mercer 2022-05-13 11:54:40 +01:00
parent 1fae5bf71b
commit 54b4854fda
64 changed files with 2252 additions and 99 deletions

4
lib/codeql.js generated
View file

@ -254,7 +254,9 @@ async function setupCodeQL(codeqlURL, apiDetails, tempDir, toolCacheDir, variant
}
const parsedCodeQLURL = new URL(codeqlURL);
const parsedQueryString = query_string_1.default.parse(parsedCodeQLURL.search);
const headers = { accept: "application/octet-stream" };
const headers = {
accept: "application/octet-stream",
};
// We only want to provide an authorization header if we are downloading
// from the same GitHub instance the Action is running on.
// This avoids leaking Enterprise tokens to dotcom.