@ -2954,13 +2954,14 @@ var __importStar = (this && this.__importStar) || function (mod) {
return result ;
return result ;
} ;
} ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
exports . issu eCommand = void 0 ;
exports . prepareKeyValueMessage = exports . issu eFil eCommand = void 0 ;
// We use any as a valid input type
// We use any as a valid input type
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/no-explicit-any */
const fs = _ _importStar ( _ _webpack _require _ _ ( 747 ) ) ;
const fs = _ _importStar ( _ _webpack _require _ _ ( 747 ) ) ;
const os = _ _importStar ( _ _webpack _require _ _ ( 87 ) ) ;
const os = _ _importStar ( _ _webpack _require _ _ ( 87 ) ) ;
const uuid _1 = _ _webpack _require _ _ ( 25 ) ;
const utils _1 = _ _webpack _require _ _ ( 82 ) ;
const utils _1 = _ _webpack _require _ _ ( 82 ) ;
function issue Command( command , message ) {
function issue File Command( command , message ) {
const filePath = process . env [ ` GITHUB_ ${ command } ` ] ;
const filePath = process . env [ ` GITHUB_ ${ command } ` ] ;
if ( ! filePath ) {
if ( ! filePath ) {
throw new Error ( ` Unable to find environment variable for file command ${ command } ` ) ;
throw new Error ( ` Unable to find environment variable for file command ${ command } ` ) ;
@ -2972,7 +2973,22 @@ function issueCommand(command, message) {
encoding : 'utf8'
encoding : 'utf8'
} ) ;
} ) ;
}
}
exports . issueCommand = issueCommand ;
exports . issueFileCommand = issueFileCommand ;
function prepareKeyValueMessage ( key , value ) {
const delimiter = ` ghadelimiter_ ${ uuid _1 . v4 ( ) } ` ;
const convertedValue = utils _1 . toCommandValue ( value ) ;
// These should realistically never happen, but just in case someone finds a
// way to exploit uuid generation let's not allow keys or values that contain
// the delimiter.
if ( key . includes ( delimiter ) ) {
throw new Error ( ` Unexpected input: name should not contain the delimiter " ${ delimiter } " ` ) ;
}
if ( convertedValue . includes ( delimiter ) ) {
throw new Error ( ` Unexpected input: value should not contain the delimiter " ${ delimiter } " ` ) ;
}
return ` ${ key } << ${ delimiter } ${ os . EOL } ${ convertedValue } ${ os . EOL } ${ delimiter } ` ;
}
exports . prepareKeyValueMessage = prepareKeyValueMessage ;
//# sourceMappingURL=file-command.js.map
//# sourceMappingURL=file-command.js.map
/***/ } ) ,
/***/ } ) ,
@ -40551,7 +40567,6 @@ const file_command_1 = __webpack_require__(102);
const utils _1 = _ _webpack _require _ _ ( 82 ) ;
const utils _1 = _ _webpack _require _ _ ( 82 ) ;
const os = _ _importStar ( _ _webpack _require _ _ ( 87 ) ) ;
const os = _ _importStar ( _ _webpack _require _ _ ( 87 ) ) ;
const path = _ _importStar ( _ _webpack _require _ _ ( 622 ) ) ;
const path = _ _importStar ( _ _webpack _require _ _ ( 622 ) ) ;
const uuid _1 = _ _webpack _require _ _ ( 25 ) ;
const oidc _utils _1 = _ _webpack _require _ _ ( 742 ) ;
const oidc _utils _1 = _ _webpack _require _ _ ( 742 ) ;
/ * *
/ * *
* The code to exit an action
* The code to exit an action
@ -40581,20 +40596,9 @@ function exportVariable(name, val) {
process . env [ name ] = convertedVal ;
process . env [ name ] = convertedVal ;
const filePath = process . env [ 'GITHUB_ENV' ] || '' ;
const filePath = process . env [ 'GITHUB_ENV' ] || '' ;
if ( filePath ) {
if ( filePath ) {
const delimiter = ` ghadelimiter_ ${ uuid _1 . v4 ( ) } ` ;
return file _command _1 . issueFileCommand ( 'ENV' , file _command _1 . prepareKeyValueMessage ( name , val ) ) ;
// These should realistically never happen, but just in case someone finds a way to exploit uuid generation let's not allow keys or values that contain the delimiter.
if ( name . includes ( delimiter ) ) {
throw new Error ( ` Unexpected input: name should not contain the delimiter " ${ delimiter } " ` ) ;
}
}
if ( convertedVal . includes ( delimiter ) ) {
throw new Error ( ` Unexpected input: value should not contain the delimiter " ${ delimiter } " ` ) ;
}
const commandValue = ` ${ name } << ${ delimiter } ${ os . EOL } ${ convertedVal } ${ os . EOL } ${ delimiter } ` ;
file _command _1 . issueCommand ( 'ENV' , commandValue ) ;
}
else {
command _1 . issueCommand ( 'set-env' , { name } , convertedVal ) ;
command _1 . issueCommand ( 'set-env' , { name } , convertedVal ) ;
}
}
}
exports . exportVariable = exportVariable ;
exports . exportVariable = exportVariable ;
/ * *
/ * *
@ -40612,7 +40616,7 @@ exports.setSecret = setSecret;
function addPath ( inputPath ) {
function addPath ( inputPath ) {
const filePath = process . env [ 'GITHUB_PATH' ] || '' ;
const filePath = process . env [ 'GITHUB_PATH' ] || '' ;
if ( filePath ) {
if ( filePath ) {
file _command _1 . issue Command( 'PATH' , inputPath ) ;
file _command _1 . issue File Command( 'PATH' , inputPath ) ;
}
}
else {
else {
command _1 . issueCommand ( 'add-path' , { } , inputPath ) ;
command _1 . issueCommand ( 'add-path' , { } , inputPath ) ;
@ -40652,7 +40656,10 @@ function getMultilineInput(name, options) {
const inputs = getInput ( name , options )
const inputs = getInput ( name , options )
. split ( '\n' )
. split ( '\n' )
. filter ( x => x !== '' ) ;
. filter ( x => x !== '' ) ;
if ( options && options . trimWhitespace === false ) {
return inputs ;
return inputs ;
}
return inputs . map ( input => input . trim ( ) ) ;
}
}
exports . getMultilineInput = getMultilineInput ;
exports . getMultilineInput = getMultilineInput ;
/ * *
/ * *
@ -40685,8 +40692,12 @@ exports.getBooleanInput = getBooleanInput;
* /
* /
// eslint-disable-next-line @typescript-eslint/no-explicit-any
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function setOutput ( name , value ) {
function setOutput ( name , value ) {
const filePath = process . env [ 'GITHUB_OUTPUT' ] || '' ;
if ( filePath ) {
return file _command _1 . issueFileCommand ( 'OUTPUT' , file _command _1 . prepareKeyValueMessage ( name , value ) ) ;
}
process . stdout . write ( os . EOL ) ;
process . stdout . write ( os . EOL ) ;
command _1 . issueCommand ( 'set-output' , { name } , value ) ;
command _1 . issueCommand ( 'set-output' , { name } , utils_1 . toCommandValue ( value) ) ;
}
}
exports . setOutput = setOutput ;
exports . setOutput = setOutput ;
/ * *
/ * *
@ -40815,7 +40826,11 @@ exports.group = group;
* /
* /
// eslint-disable-next-line @typescript-eslint/no-explicit-any
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function saveState ( name , value ) {
function saveState ( name , value ) {
command _1 . issueCommand ( 'save-state' , { name } , value ) ;
const filePath = process . env [ 'GITHUB_STATE' ] || '' ;
if ( filePath ) {
return file _command _1 . issueFileCommand ( 'STATE' , file _command _1 . prepareKeyValueMessage ( name , value ) ) ;
}
command _1 . issueCommand ( 'save-state' , { name } , utils _1 . toCommandValue ( value ) ) ;
}
}
exports . saveState = saveState ;
exports . saveState = saveState ;
/ * *
/ * *