Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5f8c44b
Persist CodeQL version output to file rather than environment
mario-campos Aug 7, 2026
9183a7b
Handle file-read errors as cache misses
mario-campos Aug 10, 2026
208a88a
Simplify JSDoc of `getCachedCodeQlVersion`
mario-campos Aug 11, 2026
bfcd769
Fix JSDoc of `env` param
mario-campos Aug 11, 2026
0e85c0e
Refactor unit test to extract testing values
mario-campos Aug 11, 2026
bb19330
Add test of `getCachedCodeQlVersion` with no file
mario-campos Aug 11, 2026
4dc327a
Introduce basic `cli/output-cache.ts` module
mario-campos Aug 11, 2026
1332611
Move cache-related util functions into dedicated module
mario-campos Aug 11, 2026
246018e
Move `VersionInfo` to dedicated module
mario-campos Aug 11, 2026
0a99875
Move `VersionInfo`-related types to `cli/output-cache.ts`
mario-campos Aug 11, 2026
11569df
Update JSDoc of `getCachedCodeQlVersion`
mario-campos Aug 11, 2026
b222c3a
Generalize file cache data structure
mario-campos Aug 11, 2026
40f80a8
Rename type to better match generic intention
mario-campos Aug 11, 2026
33d7086
Pass environment explicitly to CLI caching functions
mario-campos Aug 12, 2026
a9baab8
Export CLI cache types
mario-campos Aug 12, 2026
337136a
Rename `CommandCacheRecord` -> `OutputCache`
mario-campos Aug 12, 2026
bf96b0d
Expand test to ensure it does not throw an exception
mario-campos Aug 12, 2026
6c0d901
Change `OutputCache` to use object for `entries`
mario-campos Aug 12, 2026
6dc6332
Bolster output-cache unit tests with more test cases
mario-campos Aug 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,819 changes: 917 additions & 902 deletions lib/entry-points.js

Large diffs are not rendered by default.

121 changes: 121 additions & 0 deletions src/cli/output-cache.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
import * as fs from "fs";
import path from "path";

import test from "ava";

import { EnvVar } from "../environment";
import { getTestEnv, setupTests } from "../testing-utils";
import * as util from "../util";

import * as outputCache from "./output-cache";

setupTests(test);

test.serial(
"getCachedCodeQlVersion reuses a version persisted by an earlier step",
async (t) => {
await util.withTmpDir(async (tmpDir: string) => {
const cacheFile = path.join(tmpDir, "codeql-action-command-cache.json");
fs.writeFileSync(
cacheFile,
JSON.stringify({
cmd: "/path/to/codeql",
entries: { version: { version: "2.20.0" } },
}),
"utf8",
);
const env = getTestEnv({ [EnvVar.TEMP]: tmpDir });
t.deepEqual(outputCache.getCachedCodeQlVersion(env, "/path/to/codeql"), {
version: "2.20.0",
});
});
},
);

test.serial(
"getCachedCodeQlVersion ignores a persisted version from a different CLI",
async (t) => {
await util.withTmpDir(async (tmpDir: string) => {
const cacheFile = path.join(tmpDir, "version.json");
fs.writeFileSync(
cacheFile,
JSON.stringify({
cmd: "/path/to/other-codeql",
version: { version: "2.20.0" },
}),
"utf8",
);
const env = getTestEnv({ [EnvVar.TEMP]: tmpDir });
t.is(
outputCache.getCachedCodeQlVersion(env, "/path/to/codeql"),
undefined,
);
});
},
);

test.serial(
"getCachedCodeQlVersion ignores a malformed persisted value",
async (t) => {
await util.withTmpDir(async (tmpDir: string) => {
const cacheFile = path.join(tmpDir, "version.json");
fs.writeFileSync(cacheFile, "not valid json", "utf8");
const env = getTestEnv({ [EnvVar.TEMP]: tmpDir });
t.is(
outputCache.getCachedCodeQlVersion(env, "/path/to/codeql"),
undefined,
);
});
},
);

test.serial(
"getCachedCodeQlVersion ignores a persisted value with the wrong structure",
async (t) => {
await util.withTmpDir(async (tmpDir: string) => {
const cacheFile = path.join(tmpDir, "version.json");
const env = getTestEnv({ [EnvVar.TEMP]: tmpDir });

const testValues = [
{ cmd: "/path/to/codeql" },
{ entries: { version: { version: "2.20.0" } } },
{ cmd: "/path/to/codeql", entries: {} },
{ cmd: "/path/to/codeql", entries: { version: {} } },
{ cmd: "/path/to/codeql", entries: { version: null } },
{ cmd: "/path/to/codeql", entries: { version: "2.20.0" } },
{ cmd: "/path/to/codeql", entries: { version: { version: null } } },
{ cmd: "/path/to/codeql", entries: { version: { version: 2.2 } } },
{ cmd: "/path/to/codeql", entries: { version: { version: 2 } } },
{
cmd: "/path/to/codeql",
entries: { version: { version: "2.20.0", overlayVersion: "1" } },
},
{
cmd: "/path/to/codeql",
entries: { version: { version: "2.20.0", features: "nope" } },
},
].map((v) => JSON.stringify(v));

for (const value of testValues) {
fs.writeFileSync(cacheFile, value, "utf8");
t.is(
outputCache.getCachedCodeQlVersion(env, "/path/to/codeql"),
undefined,
value,
);
}
});
},
);

test.serial("getCachedCodeQlVersion ignores non-existent file", async (t) => {
await util.withTmpDir(async (tmpDir: string) => {
const env = getTestEnv({ [EnvVar.TEMP]: tmpDir });
t.notThrows(() => {
t.is(
outputCache.getCachedCodeQlVersion(env, "/path/to/codeql"),
undefined,
);
});
});
});
160 changes: 160 additions & 0 deletions src/cli/output-cache.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
import * as fs from "fs";
import path from "path";

import { getTemporaryDirectory } from "../actions-util";
import { Env } from "../environment";

import type { VersionInfo } from "./types";

/**
* The keys of the command cache. Each key corresponds to a command whose output we cache.
*/
export enum CommandCacheKey {
Version = "version",
}

/**
* The mapping of CLI commands to the types of the output of each command that we cache.
*/
export type CommandCacheKeyOutputMap = {
[CommandCacheKey.Version]: VersionInfo;
};

/**
* The type of the command cache that is persisted to disk.
*/
export interface OutputCache<K extends CommandCacheKey> {
cmd: string;
entries: {
[P in K]: CommandCacheKeyOutputMap[K];
};
}

/**
* The name of the temporary file that backs the on-disk cache of
* CLI responses between workflow steps.
*/
const COMMAND_CACHE_FILENAME = "codeql-action-command-cache.json";

/**
* The module-global variable that caches the CodeQL CLI version in-memory.
*/
let cachedCodeQlVersion: undefined | VersionInfo = undefined;

/**
* Resets the in-process cache of the CodeQL CLI version. Only for use in tests,
* which exercise multiple "steps" within a single process.
*/
export function resetCachedCodeQlVersion(): void {
cachedCodeQlVersion = undefined;
}

/**
* Returns the path to the temporary file that backs the
* on-disk cache of CLI responses between workflow steps.
*/
function getCommandCacheFilePath(env: Env): string {
return path.join(getTemporaryDirectory(env), COMMAND_CACHE_FILENAME);
}

/**
* Caches the CodeQL CLI version both in-memory and on disk.
* @param cmd The path to the CodeQL CLI.
* @param version The version information to cache.
* @param env The environment variables to use.
*/
export function cacheCodeQlVersion(
cmd: string,
version: VersionInfo,
env: Env,
): void {
if (cachedCodeQlVersion !== undefined) {
throw new Error("cacheCodeQlVersion() should be called only once");
}
cachedCodeQlVersion = version;
const outputCache = {
cmd,
entries: { [CommandCacheKey.Version]: version },
} satisfies OutputCache<CommandCacheKey.Version>;
// Persist the version so that subsequent Actions steps, which run in separate
// processes, can reuse it rather than invoking `codeql version` again. We
// record the CLI path so that a different step using a different CodeQL bundle
// doesn't pick up a stale version.
fs.writeFileSync(
getCommandCacheFilePath(env),
JSON.stringify(outputCache),
"utf8",
);
}

/**
* Returns the cached CodeQL CLI version, if any.
* @param env The environment variables to use.
* @param cmd The path to the CodeQL CLI.
*/
export function getCachedCodeQlVersion(
env: Env,
cmd?: string,
): undefined | VersionInfo {
if (cachedCodeQlVersion !== undefined) {
return cachedCodeQlVersion;
}
// Fall back to the value persisted by an earlier Actions step, if any. This is
// best-effort: any malformed or mismatched value is ignored so that the caller
// invokes `codeql version` instead.
let serialized: string;
try {
serialized = fs.readFileSync(getCommandCacheFilePath(env), "utf8");
} catch {
return undefined;
}
let persisted: unknown;
try {
persisted = JSON.parse(serialized);
} catch {
return undefined;
}
if (
!isOutputCache(persisted) ||
(cmd !== undefined && persisted.cmd !== cmd)
) {
return undefined;
}
// Memoize the parsed value so that subsequent calls in this process don't
// re-parse the environment variable.
cachedCodeQlVersion = persisted.entries[CommandCacheKey.Version];
return cachedCodeQlVersion;
}

/**
* Determines whether a value is a `VersionInfo` object.
* @param x The value to test
*/
function isVersionInfo(x: unknown): x is VersionInfo {
const candidate = x as Partial<VersionInfo> | null;
return (
typeof candidate === "object" &&
candidate !== null &&
typeof candidate.version === "string" &&
(candidate.features === undefined ||
(typeof candidate.features === "object" &&
candidate.features !== null)) &&
(candidate.overlayVersion === undefined ||
typeof candidate.overlayVersion === "number")
);
}

/**
* Determines whether a value is a `OutputCache` object.
* @param x The value to test
*/
function isOutputCache(x: unknown): x is OutputCache<CommandCacheKey.Version> {
const candidate = x as Partial<OutputCache<CommandCacheKey.Version>> | null;
return (
typeof candidate === "object" &&
candidate !== null &&
typeof candidate.cmd === "string" &&
candidate.entries !== undefined &&
isVersionInfo(candidate.entries[CommandCacheKey.Version])
Comment thread
mario-campos marked this conversation as resolved.
);
}
13 changes: 13 additions & 0 deletions src/cli/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export interface VersionInfo {
version: string;
features?: { [name: string]: boolean };
/**
* The overlay version helps deal with backward incompatible changes for
* overlay analysis. When a precompiled query pack reports the same overlay
* version as the CodeQL CLI, we can use the CodeQL CLI to perform overlay
* analysis with that pack. Otherwise, if the overlay versions are different,
* or if either the pack or the CLI does not report an overlay version,
* we need to revert to non-overlay analysis.
*/
overlayVersion?: number;
}
22 changes: 5 additions & 17 deletions src/codeql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ import {
runTool,
} from "./actions-util";
import * as api from "./api-client";
import * as outputCache from "./cli/output-cache";
import type { VersionInfo } from "./cli/types";
import { CliError, wrapCliConfigurationError } from "./cli-errors";
import { appendExtraQueryExclusions, type Config } from "./config-utils";
import { DocUrl } from "./doc-url";
import { EnvVar } from "./environment";
import { EnvVar, getEnv } from "./environment";
import {
CodeQLDefaultVersionInfo,
Feature,
Expand Down Expand Up @@ -215,20 +217,6 @@ export interface CodeQL {
): Promise<void>;
}

export interface VersionInfo {
version: string;
features?: { [name: string]: boolean };
/**
* The overlay version helps deal with backward incompatible changes for
* overlay analysis. When a precompiled query pack reports the same overlay
* version as the CodeQL CLI, we can use the CodeQL CLI to perform overlay
* analysis with that pack. Otherwise, if the overlay versions are different,
* or if either the pack or the CLI does not report an overlay version,
* we need to revert to non-overlay analysis.
*/
overlayVersion?: number;
}

export interface ResolveDatabaseOutput {
overlayBaseSpecifier?: string;
}
Expand Down Expand Up @@ -502,7 +490,7 @@ async function getCodeQLForCmd(
return cmd;
},
async getVersion() {
let result = util.getCachedCodeQlVersion(cmd);
let result = outputCache.getCachedCodeQlVersion(getEnv(), cmd);
if (result === undefined) {
result = await runCliJson<VersionInfo>(
cmd,
Expand All @@ -511,7 +499,7 @@ async function getCodeQLForCmd(
noStreamStdout: true,
},
);
util.cacheCodeQlVersion(cmd, result);
outputCache.cacheCodeQlVersion(cmd, result, getEnv());
}
return result;
},
Expand Down
6 changes: 0 additions & 6 deletions src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ export enum EnvVar {
*/
CODE_SCANNING_REF = "CODE_SCANNING_REF",

/**
* `PersistedVersionInfo` for the CodeQL CLI, so later Actions steps can reuse it instead of
* invoking `codeql version` again.
*/
CODEQL_VERSION_INFO = "CODEQL_ACTION_CLI_VERSION_INFO",

/** Whether the CodeQL Action has invoked the Go autobuilder. */
DID_AUTOBUILD_GOLANG = "CODEQL_ACTION_DID_AUTOBUILD_GOLANG",

Expand Down
4 changes: 2 additions & 2 deletions src/status-report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
isSelfHostedRunner,
} from "./actions-util";
import { getAnalysisKey, getApiClient } from "./api-client";
import { getCachedCodeQlVersion } from "./cli/output-cache";
import type { Config } from "./config/action-config";
import type { ComputedInput, InputName } from "./config/inputs";
import { parseRegistriesWithoutCredentials } from "./config/pack-registries";
Expand All @@ -30,7 +31,6 @@ import { registryBaseSchema } from "./start-proxy/types";
import {
ConfigurationError,
getRequiredEnvParam,
getCachedCodeQlVersion,
isInTestMode,
GITHUB_DOTCOM_URL,
DiskUsage,
Expand Down Expand Up @@ -376,7 +376,7 @@ export async function createStatusReportBase(
core.exportVariable(EnvVar.WORKFLOW_STARTED_AT, workflowStartedAt);
}
const runnerOs = getRequiredEnvParam("RUNNER_OS");
const codeQlCliVersion = getCachedCodeQlVersion();
const codeQlCliVersion = getCachedCodeQlVersion(getEnv());
const actionRef = process.env["GITHUB_ACTION_REF"] || "";
const testingEnvironment = getTestingEnvironment();
// re-export the testing environment variable so that it is available to subsequent steps,
Expand Down
Loading
Loading