Skip to content

Commit 40401cf

Browse files
committed
Update for isdocker
1 parent 806ab1c commit 40401cf

File tree

6 files changed

+108
-20
lines changed

6 files changed

+108
-20
lines changed

dist/index.js

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

dist/index.js.map

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

dist/post/index.js

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

dist/post/index.js.map

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

src/cleanup.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ import * as cp from "child_process";
33
import * as common from "./common";
44
import isDocker from "is-docker";
55
import { isArcRunner } from "./arc-runner";
6-
6+
import { isGithubHosted } from "./tls-inspect";
77
(async () => {
88
console.log("[harden-runner] post-step");
99

1010
if (process.platform !== "linux") {
1111
console.log(common.UBUNTU_MESSAGE);
1212
return;
1313
}
14-
if (isDocker()) {
14+
if (isGithubHosted() && isDocker()) {
1515
console.log(common.CONTAINER_MESSAGE);
1616
return;
1717
}

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ import * as common from "./common";
22
import * as core from "@actions/core";
33
import isDocker from "is-docker";
44
import { STEPSECURITY_WEB_URL } from "./configs";
5-
5+
import { isGithubHosted } from "./tls-inspect";
66
(async () => {
77
console.log("[harden-runner] main-step");
88

99
if (process.platform !== "linux") {
1010
console.log(common.UBUNTU_MESSAGE);
1111
return;
1212
}
13-
if (isDocker()) {
13+
if (isGithubHosted() && isDocker()) {
1414
console.log(common.CONTAINER_MESSAGE);
1515
return;
1616
}

0 commit comments

Comments
 (0)