Rebuild dist

This commit is contained in:
Nick Alteen
2025-02-11 15:00:23 -05:00
parent a6fb911fb9
commit 3205a27d45
2 changed files with 76 additions and 76 deletions

150
dist/index.js generated vendored
View File

@ -44,7 +44,7 @@ function requireUtils$1 () {
// We use any as a valid input type
/* eslint-disable @typescript-eslint/no-explicit-any */
Object.defineProperty(utils$1, "__esModule", { value: true });
utils$1.toCommandProperties = utils$1.toCommandValue = undefined;
utils$1.toCommandProperties = utils$1.toCommandValue = void 0;
/**
* Sanitizes an input into a string so it can be passed into issueCommand safely
* @param input input to sanitize into a string
@ -112,7 +112,7 @@ function requireCommand () {
return result;
};
Object.defineProperty(command, "__esModule", { value: true });
command.issue = command.issueCommand = undefined;
command.issue = command.issueCommand = void 0;
const os = __importStar(require$$0);
const utils_1 = requireUtils$1();
/**
@ -218,7 +218,7 @@ function requireFileCommand () {
return result;
};
Object.defineProperty(fileCommand, "__esModule", { value: true });
fileCommand.prepareKeyValueMessage = fileCommand.issueFileCommand = undefined;
fileCommand.prepareKeyValueMessage = fileCommand.issueFileCommand = void 0;
// We use any as a valid input type
/* eslint-disable @typescript-eslint/no-explicit-any */
const crypto = __importStar(require$$0$1);
@ -269,7 +269,7 @@ function requireProxy () {
if (hasRequiredProxy) return proxy;
hasRequiredProxy = 1;
Object.defineProperty(proxy, "__esModule", { value: true });
proxy.checkBypass = proxy.getProxyUrl = undefined;
proxy.checkBypass = proxy.getProxyUrl = void 0;
function getProxyUrl(reqUrl) {
const usingSsl = reqUrl.protocol === 'https:';
if (checkBypass(reqUrl)) {
@ -8198,7 +8198,7 @@ function requireUtils () {
if (hasRequiredUtils) return utils;
hasRequiredUtils = 1;
Object.defineProperty(utils, "__esModule", { value: true });
utils.enumToMap = undefined;
utils.enumToMap = void 0;
function enumToMap(obj) {
const res = {};
Object.keys(obj).forEach((key) => {
@ -8221,7 +8221,7 @@ function requireConstants$2 () {
hasRequiredConstants$2 = 1;
(function (exports) {
Object.defineProperty(exports, "__esModule", { value: true });
exports.SPECIAL_HEADERS = exports.HEADER_STATE = exports.MINOR = exports.MAJOR = exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS = exports.TOKEN = exports.STRICT_TOKEN = exports.HEX = exports.URL_CHAR = exports.STRICT_URL_CHAR = exports.USERINFO_CHARS = exports.MARK = exports.ALPHANUM = exports.NUM = exports.HEX_MAP = exports.NUM_MAP = exports.ALPHA = exports.FINISH = exports.H_METHOD_MAP = exports.METHOD_MAP = exports.METHODS_RTSP = exports.METHODS_ICE = exports.METHODS_HTTP = exports.METHODS = exports.LENIENT_FLAGS = exports.FLAGS = exports.TYPE = exports.ERROR = undefined;
exports.SPECIAL_HEADERS = exports.HEADER_STATE = exports.MINOR = exports.MAJOR = exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS = exports.TOKEN = exports.STRICT_TOKEN = exports.HEX = exports.URL_CHAR = exports.STRICT_URL_CHAR = exports.USERINFO_CHARS = exports.MARK = exports.ALPHANUM = exports.NUM = exports.HEX_MAP = exports.NUM_MAP = exports.ALPHA = exports.FINISH = exports.H_METHOD_MAP = exports.METHOD_MAP = exports.METHODS_RTSP = exports.METHODS_ICE = exports.METHODS_HTTP = exports.METHODS = exports.LENIENT_FLAGS = exports.FLAGS = exports.TYPE = exports.ERROR = void 0;
const utils_1 = requireUtils();
(function (ERROR) {
ERROR[ERROR["OK"] = 0] = "OK";
@ -24386,7 +24386,7 @@ function requireLib () {
});
};
Object.defineProperty(lib, "__esModule", { value: true });
lib.HttpClient = lib.isHttps = lib.HttpClientResponse = lib.HttpClientError = lib.getProxyUrl = lib.MediaTypes = lib.Headers = lib.HttpCodes = undefined;
lib.HttpClient = lib.isHttps = lib.HttpClientResponse = lib.HttpClientError = lib.getProxyUrl = lib.MediaTypes = lib.Headers = lib.HttpCodes = void 0;
const http = __importStar(require$$2);
const https = __importStar(require$$3);
const pm = __importStar(requireProxy());
@ -24469,8 +24469,8 @@ function requireLib () {
this.message = message;
}
readBody() {
return __awaiter(this, undefined, undefined, function* () {
return new Promise((resolve) => __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {
let output = Buffer.alloc(0);
this.message.on('data', (chunk) => {
output = Buffer.concat([output, chunk]);
@ -24482,8 +24482,8 @@ function requireLib () {
});
}
readBodyBuffer() {
return __awaiter(this, undefined, undefined, function* () {
return new Promise((resolve) => __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {
const chunks = [];
this.message.on('data', (chunk) => {
chunks.push(chunk);
@ -24540,42 +24540,42 @@ function requireLib () {
}
}
options(requestUrl, additionalHeaders) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.request('OPTIONS', requestUrl, null, additionalHeaders || {});
});
}
get(requestUrl, additionalHeaders) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.request('GET', requestUrl, null, additionalHeaders || {});
});
}
del(requestUrl, additionalHeaders) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.request('DELETE', requestUrl, null, additionalHeaders || {});
});
}
post(requestUrl, data, additionalHeaders) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.request('POST', requestUrl, data, additionalHeaders || {});
});
}
patch(requestUrl, data, additionalHeaders) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.request('PATCH', requestUrl, data, additionalHeaders || {});
});
}
put(requestUrl, data, additionalHeaders) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.request('PUT', requestUrl, data, additionalHeaders || {});
});
}
head(requestUrl, additionalHeaders) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.request('HEAD', requestUrl, null, additionalHeaders || {});
});
}
sendStream(verb, requestUrl, stream, additionalHeaders) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.request(verb, requestUrl, stream, additionalHeaders);
});
}
@ -24584,14 +24584,14 @@ function requireLib () {
* Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise
*/
getJson(requestUrl, additionalHeaders = {}) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson);
const res = yield this.get(requestUrl, additionalHeaders);
return this._processResponse(res, this.requestOptions);
});
}
postJson(requestUrl, obj, additionalHeaders = {}) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
const data = JSON.stringify(obj, null, 2);
additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson);
additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson);
@ -24600,7 +24600,7 @@ function requireLib () {
});
}
putJson(requestUrl, obj, additionalHeaders = {}) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
const data = JSON.stringify(obj, null, 2);
additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson);
additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson);
@ -24609,7 +24609,7 @@ function requireLib () {
});
}
patchJson(requestUrl, obj, additionalHeaders = {}) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
const data = JSON.stringify(obj, null, 2);
additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson);
additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson);
@ -24623,7 +24623,7 @@ function requireLib () {
* Prefer get, del, post and patch
*/
request(verb, requestUrl, data, headers) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
if (this._disposed) {
throw new Error('Client has already been disposed.');
}
@ -24719,7 +24719,7 @@ function requireLib () {
* @param data
*/
requestRaw(info, data) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return new Promise((resolve, reject) => {
function callbackForResult(err, res) {
if (err) {
@ -24928,15 +24928,15 @@ function requireLib () {
return proxyAgent;
}
_performExponentialBackoff(retryNumber) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber);
const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber);
return new Promise(resolve => setTimeout(() => resolve(), ms));
});
}
_processResponse(res, options) {
return __awaiter(this, undefined, undefined, function* () {
return new Promise((resolve, reject) => __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () {
const statusCode = res.message.statusCode || 0;
const response = {
statusCode,
@ -25023,7 +25023,7 @@ function requireAuth () {
});
};
Object.defineProperty(auth, "__esModule", { value: true });
auth.PersonalAccessTokenCredentialHandler = auth.BearerCredentialHandler = auth.BasicCredentialHandler = undefined;
auth.PersonalAccessTokenCredentialHandler = auth.BearerCredentialHandler = auth.BasicCredentialHandler = void 0;
class BasicCredentialHandler {
constructor(username, password) {
this.username = username;
@ -25040,7 +25040,7 @@ function requireAuth () {
return false;
}
handleAuthentication() {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
throw new Error('not implemented');
});
}
@ -25063,7 +25063,7 @@ function requireAuth () {
return false;
}
handleAuthentication() {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
throw new Error('not implemented');
});
}
@ -25086,7 +25086,7 @@ function requireAuth () {
return false;
}
handleAuthentication() {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
throw new Error('not implemented');
});
}
@ -25111,7 +25111,7 @@ function requireOidcUtils () {
});
};
Object.defineProperty(oidcUtils, "__esModule", { value: true });
oidcUtils.OidcClient = undefined;
oidcUtils.OidcClient = void 0;
const http_client_1 = requireLib();
const auth_1 = requireAuth();
const core_1 = requireCore();
@ -25139,7 +25139,7 @@ function requireOidcUtils () {
}
static getCall(id_token_url) {
var _a;
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
const httpclient = OidcClient.createHttpClient();
const res = yield httpclient
.getJson(id_token_url)
@ -25148,7 +25148,7 @@ function requireOidcUtils () {
Error Code : ${error.statusCode}\n
Error Message: ${error.message}`);
});
const id_token = (_a = res.result) === null || _a === undefined ? undefined : _a.value;
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
if (!id_token) {
throw new Error('Response json body do not have ID Token field');
}
@ -25156,7 +25156,7 @@ function requireOidcUtils () {
});
}
static getIDToken(audience) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
try {
// New ID Token is requested from action service
let id_token_url = OidcClient.getIDTokenUrl();
@ -25198,7 +25198,7 @@ function requireSummary () {
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.summary = exports.markdownSummary = exports.SUMMARY_DOCS_URL = exports.SUMMARY_ENV_VAR = undefined;
exports.summary = exports.markdownSummary = exports.SUMMARY_DOCS_URL = exports.SUMMARY_ENV_VAR = void 0;
const os_1 = require$$0;
const fs_1 = require$$1;
const { access, appendFile, writeFile } = fs_1.promises;
@ -25215,7 +25215,7 @@ function requireSummary () {
* @returns step summary file path
*/
filePath() {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
if (this._filePath) {
return this._filePath;
}
@ -25259,8 +25259,8 @@ function requireSummary () {
* @returns {Promise<Summary>} summary instance
*/
write(options) {
return __awaiter(this, undefined, undefined, function* () {
const overwrite = !!(options === null || options === undefined ? undefined : options.overwrite);
return __awaiter(this, void 0, void 0, function* () {
const overwrite = !!(options === null || options === void 0 ? void 0 : options.overwrite);
const filePath = yield this.filePath();
const writeFunc = overwrite ? writeFile : appendFile;
yield writeFunc(filePath, this._buffer, { encoding: 'utf8' });
@ -25273,7 +25273,7 @@ function requireSummary () {
* @returns {Summary} summary instance
*/
clear() {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return this.emptyBuffer().write({ overwrite: true });
});
}
@ -25505,7 +25505,7 @@ function requirePathUtils () {
return result;
};
Object.defineProperty(pathUtils, "__esModule", { value: true });
pathUtils.toPlatformPath = pathUtils.toWin32Path = pathUtils.toPosixPath = undefined;
pathUtils.toPlatformPath = pathUtils.toWin32Path = pathUtils.toPosixPath = void 0;
const path = __importStar(require$$1$5);
/**
* toPosixPath converts the given path to the posix form. On Windows, \\ will be
@ -25591,7 +25591,7 @@ function requireIoUtil () {
};
var _a;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCmdPath = exports.tryGetExecutablePath = exports.isRooted = exports.isDirectory = exports.exists = exports.READONLY = exports.UV_FS_O_EXLOCK = exports.IS_WINDOWS = exports.unlink = exports.symlink = exports.stat = exports.rmdir = exports.rm = exports.rename = exports.readlink = exports.readdir = exports.open = exports.mkdir = exports.lstat = exports.copyFile = exports.chmod = undefined;
exports.getCmdPath = exports.tryGetExecutablePath = exports.isRooted = exports.isDirectory = exports.exists = exports.READONLY = exports.UV_FS_O_EXLOCK = exports.IS_WINDOWS = exports.unlink = exports.symlink = exports.stat = exports.rmdir = exports.rm = exports.rename = exports.readlink = exports.readdir = exports.open = exports.mkdir = exports.lstat = exports.copyFile = exports.chmod = void 0;
const fs = __importStar(require$$1);
const path = __importStar(require$$1$5);
_a = fs.promises
@ -25603,7 +25603,7 @@ function requireIoUtil () {
exports.UV_FS_O_EXLOCK = 0x10000000;
exports.READONLY = fs.constants.O_RDONLY;
function exists(fsPath) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
try {
yield exports.stat(fsPath);
}
@ -25618,7 +25618,7 @@ function requireIoUtil () {
}
exports.exists = exists;
function isDirectory(fsPath, useStat = false) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
const stats = useStat ? yield exports.stat(fsPath) : yield exports.lstat(fsPath);
return stats.isDirectory();
});
@ -25647,7 +25647,7 @@ function requireIoUtil () {
* @return if file exists and is executable, returns the file path. otherwise empty string.
*/
function tryGetExecutablePath(filePath, extensions) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
let stats = undefined;
try {
// test file exists
@ -25739,7 +25739,7 @@ function requireIoUtil () {
// Get the path of cmd.exe in windows
function getCmdPath() {
var _a;
return (_a = process.env['COMSPEC']) !== null && _a !== undefined ? _a : `cmd.exe`;
return (_a = process.env['COMSPEC']) !== null && _a !== void 0 ? _a : `cmd.exe`;
}
exports.getCmdPath = getCmdPath;
@ -25781,7 +25781,7 @@ function requireIo () {
});
};
Object.defineProperty(io, "__esModule", { value: true });
io.findInPath = io.which = io.mkdirP = io.rmRF = io.mv = io.cp = undefined;
io.findInPath = io.which = io.mkdirP = io.rmRF = io.mv = io.cp = void 0;
const assert_1 = require$$0$3;
const path = __importStar(require$$1$5);
const ioUtil = __importStar(requireIoUtil());
@ -25794,7 +25794,7 @@ function requireIo () {
* @param options optional. See CopyOptions.
*/
function cp(source, dest, options = {}) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
const { force, recursive, copySourceDirectory } = readCopyOptions(options);
const destStat = (yield ioUtil.exists(dest)) ? yield ioUtil.stat(dest) : null;
// Dest is an existing file, but not forcing
@ -25835,7 +25835,7 @@ function requireIo () {
* @param options optional. See MoveOptions.
*/
function mv(source, dest, options = {}) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
if (yield ioUtil.exists(dest)) {
let destExists = true;
if (yield ioUtil.isDirectory(dest)) {
@ -25863,7 +25863,7 @@ function requireIo () {
* @param inputPath path to remove
*/
function rmRF(inputPath) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
if (ioUtil.IS_WINDOWS) {
// Check for invalid characters
// https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file
@ -25894,7 +25894,7 @@ function requireIo () {
* @returns Promise<void>
*/
function mkdirP(fsPath) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
assert_1.ok(fsPath, 'a path argument must be provided');
yield ioUtil.mkdir(fsPath, { recursive: true });
});
@ -25909,7 +25909,7 @@ function requireIo () {
* @returns Promise<string> path to tool
*/
function which(tool, check) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
if (!tool) {
throw new Error("parameter 'tool' is required");
}
@ -25940,7 +25940,7 @@ function requireIo () {
* @returns Promise<string[]> the paths of the tool
*/
function findInPath(tool) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
if (!tool) {
throw new Error("parameter 'tool' is required");
}
@ -26000,7 +26000,7 @@ function requireIo () {
return { force, recursive, copySourceDirectory };
}
function cpDirRecursive(sourceDir, destDir, currentDepth, force) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
// Ensure there is not a run away recursive copy
if (currentDepth >= 255)
return;
@ -26025,7 +26025,7 @@ function requireIo () {
}
// Buffered file copy
function copyFile(srcFile, destFile, force) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
if ((yield ioUtil.lstat(srcFile)).isSymbolicLink()) {
// unlink/re-link it
try {
@ -26087,7 +26087,7 @@ function requireToolrunner () {
});
};
Object.defineProperty(toolrunner, "__esModule", { value: true });
toolrunner.argStringToArray = toolrunner.ToolRunner = undefined;
toolrunner.argStringToArray = toolrunner.ToolRunner = void 0;
const os = __importStar(require$$0);
const events = __importStar(require$$4);
const child = __importStar(require$$2$2);
@ -26440,7 +26440,7 @@ function requireToolrunner () {
* @returns number
*/
exec() {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
// root the tool path if it is unrooted and contains relative pathing
if (!ioUtil.isRooted(this.toolPath) &&
(this.toolPath.includes('/') ||
@ -26451,7 +26451,7 @@ function requireToolrunner () {
// if the tool is only a file name, then resolve it from the PATH
// otherwise verify it exists (add extension on Windows if necessary)
this.toolPath = yield io.which(this.toolPath, true);
return new Promise((resolve, reject) => __awaiter(this, undefined, undefined, function* () {
return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () {
this._debug(`exec tool: ${this.toolPath}`);
this._debug('arguments:');
for (const arg of this.args) {
@ -26712,7 +26712,7 @@ function requireExec () {
});
};
Object.defineProperty(exec, "__esModule", { value: true });
exec.getExecOutput = exec.exec = undefined;
exec.getExecOutput = exec.exec = void 0;
const string_decoder_1 = require$$6;
const tr = __importStar(requireToolrunner());
/**
@ -26726,7 +26726,7 @@ function requireExec () {
* @returns Promise<number> exit code
*/
function exec$1(commandLine, args, options) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
const commandArgs = tr.argStringToArray(commandLine);
if (commandArgs.length === 0) {
throw new Error(`Parameter 'commandLine' cannot be null or empty.`);
@ -26751,14 +26751,14 @@ function requireExec () {
*/
function getExecOutput(commandLine, args, options) {
var _a, _b;
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
let stdout = '';
let stderr = '';
//Using string decoder covers the case where a mult-byte character is split
const stdoutDecoder = new string_decoder_1.StringDecoder('utf8');
const stderrDecoder = new string_decoder_1.StringDecoder('utf8');
const originalStdoutListener = (_a = options === null || options === undefined ? undefined : options.listeners) === null || _a === undefined ? undefined : _a.stdout;
const originalStdErrListener = (_b = options === null || options === undefined ? undefined : options.listeners) === null || _b === undefined ? undefined : _b.stderr;
const originalStdoutListener = (_a = options === null || options === void 0 ? void 0 : options.listeners) === null || _a === void 0 ? void 0 : _a.stdout;
const originalStdErrListener = (_b = options === null || options === void 0 ? void 0 : options.listeners) === null || _b === void 0 ? void 0 : _b.stderr;
const stdErrListener = (data) => {
stderr += stderrDecoder.write(data);
if (originalStdErrListener) {
@ -26771,7 +26771,7 @@ function requireExec () {
originalStdoutListener(data);
}
};
const listeners = Object.assign(Object.assign({}, options === null || options === undefined ? undefined : options.listeners), { stdout: stdOutListener, stderr: stdErrListener });
const listeners = Object.assign(Object.assign({}, options === null || options === void 0 ? void 0 : options.listeners), { stdout: stdOutListener, stderr: stdErrListener });
const exitCode = yield exec$1(commandLine, args, Object.assign(Object.assign({}, options), { listeners }));
//flush any remaining characters
stdout += stdoutDecoder.end();
@ -26830,10 +26830,10 @@ function requirePlatform () {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDetails = exports.isLinux = exports.isMacOS = exports.isWindows = exports.arch = exports.platform = undefined;
exports.getDetails = exports.isLinux = exports.isMacOS = exports.isWindows = exports.arch = exports.platform = void 0;
const os_1 = __importDefault(require$$0);
const exec = __importStar(requireExec());
const getWindowsInfo = () => __awaiter(undefined, undefined, undefined, function* () {
const getWindowsInfo = () => __awaiter(void 0, void 0, void 0, function* () {
const { stdout: version } = yield exec.getExecOutput('powershell -command "(Get-CimInstance -ClassName Win32_OperatingSystem).Version"', undefined, {
silent: true
});
@ -26845,19 +26845,19 @@ function requirePlatform () {
version: version.trim()
};
});
const getMacOsInfo = () => __awaiter(undefined, undefined, undefined, function* () {
const getMacOsInfo = () => __awaiter(void 0, void 0, void 0, function* () {
var _a, _b, _c, _d;
const { stdout } = yield exec.getExecOutput('sw_vers', undefined, {
silent: true
});
const version = (_b = (_a = stdout.match(/ProductVersion:\s*(.+)/)) === null || _a === undefined ? undefined : _a[1]) !== null && _b !== undefined ? _b : '';
const name = (_d = (_c = stdout.match(/ProductName:\s*(.+)/)) === null || _c === undefined ? undefined : _c[1]) !== null && _d !== undefined ? _d : '';
const version = (_b = (_a = stdout.match(/ProductVersion:\s*(.+)/)) === null || _a === void 0 ? void 0 : _a[1]) !== null && _b !== void 0 ? _b : '';
const name = (_d = (_c = stdout.match(/ProductName:\s*(.+)/)) === null || _c === void 0 ? void 0 : _c[1]) !== null && _d !== void 0 ? _d : '';
return {
name,
version
};
});
const getLinuxInfo = () => __awaiter(undefined, undefined, undefined, function* () {
const getLinuxInfo = () => __awaiter(void 0, void 0, void 0, function* () {
const { stdout } = yield exec.getExecOutput('lsb_release', ['-i', '-r', '-s'], {
silent: true
});
@ -26873,7 +26873,7 @@ function requirePlatform () {
exports.isMacOS = exports.platform === 'darwin';
exports.isLinux = exports.platform === 'linux';
function getDetails() {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return Object.assign(Object.assign({}, (yield (exports.isWindows
? getWindowsInfo()
: exports.isMacOS
@ -26930,7 +26930,7 @@ function requireCore () {
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.platform = exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = exports.markdownSummary = exports.summary = exports.getIDToken = exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = undefined;
exports.platform = exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = exports.markdownSummary = exports.summary = exports.getIDToken = exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0;
const command_1 = requireCommand();
const file_command_1 = requireFileCommand();
const utils_1 = requireUtils$1();
@ -27171,7 +27171,7 @@ function requireCore () {
* @param fn The function to wrap in the group
*/
function group(name, fn) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
startGroup(name);
let result;
try {
@ -27213,7 +27213,7 @@ function requireCore () {
}
exports.getState = getState;
function getIDToken(aud) {
return __awaiter(this, undefined, undefined, function* () {
return __awaiter(this, void 0, void 0, function* () {
return yield oidc_utils_1.OidcClient.getIDToken(aud);
});
}

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long