Skip to content

Commit 20ac010

Browse files
committed
permissions
1 parent 5a39d7a commit 20ac010

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

dist/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -2868,6 +2868,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
28682868
Object.defineProperty(exports, "__esModule", { value: true });
28692869
const os = __importStar(__webpack_require__(87));
28702870
const util = __importStar(__webpack_require__(669));
2871+
const fs = __importStar(__webpack_require__(747));
28712872
const toolCache = __importStar(__webpack_require__(533));
28722873
const core = __importStar(__webpack_require__(470));
28732874
function downloadUrl(version) {
@@ -2888,6 +2889,7 @@ function run() {
28882889
let cachedToolpath = toolCache.find(binaryName, version);
28892890
if (!cachedToolpath) {
28902891
const downloadPath = yield toolCache.downloadTool(downloadUrl(version));
2892+
fs.chmodSync(downloadPath, '0755');
28912893
cachedToolpath = yield toolCache.cacheFile(downloadPath, binaryName, binaryName, version);
28922894
}
28932895
core.addPath(cachedToolpath);

src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as os from 'os';
22
import * as util from 'util';
3+
import * as fs from 'fs';
34

45
import * as toolCache from '@actions/tool-cache';
56
import * as core from '@actions/core';
@@ -26,6 +27,7 @@ async function run() {
2627
let cachedToolpath = toolCache.find(binaryName, version);
2728
if (!cachedToolpath) {
2829
const downloadPath = await toolCache.downloadTool(downloadUrl(version));
30+
fs.chmodSync(downloadPath, '0755');
2931
cachedToolpath = await toolCache.cacheFile(downloadPath, binaryName, binaryName, version)
3032
}
3133

0 commit comments

Comments
 (0)