Skip to content

Commit b74351a

Browse files
authored
Merge pull request #68 from MatthewCane/truncate-rundir-path-name
truncate runDir path name
2 parents 0f5a011 + 0cb459c commit b74351a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

+1-1
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.

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ actionsToolkit.run(
1313
// main
1414
async () => {
1515
const input: context.Inputs = context.getInputs();
16-
const runDir = path.join(os.homedir(), `setup-docker-action-${uuid.v4()}`);
16+
const runDir = path.join(os.homedir(), `setup-docker-action-${uuid.v4().slice(0, 8)}`);
1717

1818
if (input.context == 'default') {
1919
throw new Error(`'default' context cannot be used.`);

0 commit comments

Comments
 (0)