From ca14f00ab15a7675e736f44144bd0f74168917a4 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Tue, 30 Jul 2019 13:53:11 -0400 Subject: [PATCH] update temp in installer --- lib/installer.js | 2 +- src/installer.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/installer.js b/lib/installer.js index 8fd3a272..5f068a15 100644 --- a/lib/installer.js +++ b/lib/installer.js @@ -15,7 +15,7 @@ var __importStar = (this && this.__importStar) || function (mod) { return result; }; Object.defineProperty(exports, "__esModule", { value: true }); -let tempDirectory = process.env['RUNNER_TEMPDIRECTORY'] || ''; +let tempDirectory = process.env['RUNNER_TEMP'] || ''; const core = __importStar(require("@actions/core")); const io = __importStar(require("@actions/io")); const exec = __importStar(require("@actions/exec")); diff --git a/src/installer.ts b/src/installer.ts index a9b5f4f9..646f552d 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -1,4 +1,4 @@ -let tempDirectory = process.env['RUNNER_TEMPDIRECTORY'] || ''; +let tempDirectory = process.env['RUNNER_TEMP'] || ''; import * as core from '@actions/core'; import * as io from '@actions/io';