Skip to content

Commit db80a9a

Browse files
authored
Merge pull request #594 from github/simon-engledew/fix-runner-temp-missing
Restore original getCodeQLActionRepository behaviour
2 parents 590c245 + af32a29 commit db80a9a

7 files changed

+9
-10
lines changed

CHANGELOG.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
## [UNRELEASED]
44

5-
No user facing changes.
6-
5+
- Fix `RUNNER_TEMP environment variable must be set` when using runner.
76
## 1.0.3 - 23 Jun 2021
87

98
No user facing changes.

lib/codeql.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.test.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.test.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/codeql.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -374,11 +374,11 @@ test("getExtraOptions throws for bad content", (t) => {
374374
test("getCodeQLActionRepository", (t) => {
375375
const logger = getRunnerLogger(true);
376376

377-
initializeEnvironment(Mode.actions, "1.2.3");
377+
initializeEnvironment(Mode.runner, "1.2.3");
378378
const repoActions = codeql.getCodeQLActionRepository(logger);
379379
t.deepEqual(repoActions, "github/codeql-action");
380380

381-
initializeEnvironment(Mode.runner, "1.2.3");
381+
initializeEnvironment(Mode.actions, "1.2.3");
382382

383383
// isRunningLocalAction() === true
384384
delete process.env["GITHUB_ACTION_REPOSITORY"];

src/codeql.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function getCodeQLBundleName(): string {
175175
}
176176

177177
export function getCodeQLActionRepository(logger: Logger): string {
178-
if (util.isActions()) {
178+
if (!util.isActions()) {
179179
return CODEQL_DEFAULT_ACTION_REPOSITORY;
180180
} else {
181181
return getActionsCodeQLActionRepository(logger);

0 commit comments

Comments
 (0)