@actions/cache
Advanced tools
Comparing version 3.1.2 to 3.1.3
@@ -20,3 +20,2 @@ "use strict"; | ||
const exec_1 = require("@actions/exec"); | ||
const core_1 = require("@actions/core"); | ||
const io = __importStar(require("@actions/io")); | ||
@@ -28,3 +27,2 @@ const fs_1 = require("fs"); | ||
const IS_WINDOWS = process.platform === 'win32'; | ||
core_1.exportVariable('MSYS', 'winsymlinks:nativestrict'); | ||
// Returns tar path and type: BSD or GNU | ||
@@ -219,3 +217,6 @@ function getTarPath() { | ||
try { | ||
yield exec_1.exec(command, undefined, { cwd }); | ||
yield exec_1.exec(command, undefined, { | ||
cwd, | ||
env: Object.assign(Object.assign({}, process.env), { MSYS: 'winsymlinks:nativestrict' }) | ||
}); | ||
} | ||
@@ -222,0 +223,0 @@ catch (error) { |
{ | ||
"name": "@actions/cache", | ||
"version": "3.1.2", | ||
"version": "3.1.3", | ||
"preview": true, | ||
@@ -5,0 +5,0 @@ "description": "Actions cache lib", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
112299
1587
16